我正在研究ajax。
浏览器是谷歌浏览器。
当我点击提交时,我的浏览器没有提示确定,而是提交了表单。这里有什么问题?
<html>
<head>
<script type="text/javascript" src="/cp/scripts/jquery-1.7.2.js"></script>
<script language="javascript">
$("#test").submit(function(){
//$.post("test.php", this.serialize());
alert('ok');
return false;
});
</script>
</head>
<body>
<form id="test">
<input type="text" name="name">
<input type="submit">
</form>
</body>
</html>