示例
下例演示了当文本域中的文本被选择时,显示提示消息:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>欢迎来到蝴蝶教程</title>
//此版本是百度cdn 1.11.1,当然你可以使用更高的版本,从2.0版本以上的是不支持ie6-8的
<script type="text/javascript" src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("form").submit(function(){
alert("提交");
});
});
</script>
</head>
<body>
<form action="">
用户名:
<input type="text" name="username" value="蝴蝶教程"><br>
密码:
<input type="password" name="password" value="123456"><br>
<input type="submit" value="提交">
</form>
</body>
</html>
尝试一下