您的位置:首页 > Web前端 > JQuery

[置顶] JQuery绑定click事件的3种写法

2017-12-29 12:02 387 查看
1.首先你得有jquery 1.7以上的版本的js

2.将js导入项目






3.jsp源码

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<script type="text/javascript" src="../js/jquery-1.7.2.min.js"></script>

<script type="text/javascript" src="../js/WdatePicker.js"></script>
<link rel="stylesheet" type="text/css" href="../css/WdatePicker.css">
<script type="text/javascript">
$(document).ready(function(){
$("#text").bind("click",function(){
alert("我的id为text,你点击时触发");
});

$("#text1").on("click",function(){
alert("hellworl");
});

$("#text2").click(function(){
alert($("#text2").val());

});
});

</script>
<body>

<input id="text" type="button" value="点击"/>

<input id="text1" type="button" value="点击"/>

<input id="text2" type="text" value="love"/>
</body>
</html>4.效果图:其他的就不一一测试了



内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: