input type = button에서 onclick이 잘못되었습니다.

3750 단어 jquery
함수는ready에 넣을 수 없습니다

<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js">
script>
<script>
 function fas(){
    alert(1);
 }
script>
head>
<body>
    <input type="button" onclick = "fas()" value = "sdsdsd">
body>
html>

두 번째 $("#test").click(function(){alert(1);});

<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js">
script>
<script>
$(function(){
 $("#test").click(function(){
    alert(1);
});
});
script>
head>
<body>
    <input id = "test" type="button" value = "sdsdsd">
body>
html>

(function () 는 (document)입니다.ready(function()\의 약자

좋은 웹페이지 즐겨찾기