这是我的 HTML 和 jQuery 代码。当我单击按钮时,浏览器没有任何响应。
<html>
<head>
<title>jQuery Test</title>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/toggle.js"></script>
</head>
<body>
<input type="submit" value="button">
</body>
</html>
jQuery
$(':submit').click(function() {
// Act on the event
$('submit').attr('Please wait', 'value')
});
我正在关注的在线教程。