如果我在按钮上使用onclick事件,但是如果我使用jquery则它无效。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="js/jquery.min.js"></script>
<script>
$("#btn_skr").click(function(){
alert();
})
</script>
</head>
<body>
<button id="btn_skr">Sign in as seeker</button>
</body>
</html>
答案 0 :(得分:0)
你必须在准备好的功能内,然后才能正常工作
$(function(){
$("#btn_skr").click(function(){
alert(1);
})
});