jQuery 在我的 HTML 页面上不起作用。可能是一些代码/语法问题。需要一双好眼睛来看看。
<head>
<script src="../common/js/jquery-1.9.0.js"/>
<script>
$(document).ready(function(){
$("#insert").click(function(){
alert("ok");
});
});
</script>
</head>
<body>
<input type="submit" id="insert" value="Insert"/>
</body>
</html>
我确定我的文件在那里,但我的警报没有弹出。请帮忙