发布网友 发布时间:2022-04-22 14:23
共11个回答
热心网友 时间:2022-04-20 06:31
给你一个示例:
热心网友 时间:2022-04-20 07:49
在每一个匹配元素的click事件中绑定一个处理函数。点击事件会在你的指针设备的按钮在元素上单击时触发。单击的定义是在屏幕的同一点触发了mousedown和mouseup.常用的事件有如下的 mousedownmouseupclickBinds a function to the click event of each matched element.The click event fires when the pointing device button is clicked over an element. A click is defined as a mousedown and mouseup over the same screen location. The sequence of these events is: mousedownmouseupclick返回值jQuery参数fn (Function) : 绑定到click事件的函数示例将页面内所有段落点击后隐藏。 jQuery 代码:$("p").click( function () { $(this).hide(); });
热心网友 时间:2022-04-20 09:24
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<div>
<input type="text" value="" name="username" class="username" />
<input type="button" value="点击获取输入框的值" name="sub" onclick="getData();" />
<script type="text/javascript">
function getData(){
var username = $.trim($(".username").val());
alert(username);
}
</script>
</div>
</body>
</html>
热心网友 时间:2022-04-20 11:15
推荐这么写
$('xxx').on('click',function(){热心网友 时间:2022-04-20 13:23
<input type="button" class="wel" value="欢迎" id="welcome">
$("#welcome").bind("click",function(){alert('您点击我了!');});
热心网友 时间:2022-04-20 15:48
$(function(){
$("#button").click(function(){
//点击后。。。
});
});
热心网友 时间:2022-04-20 18:29
$(function(){$("#id").click(function(){//方法体});});
热心网友 时间:2022-04-20 21:27
$(function(){ $("#USERID").click(function(){ alert(111111111)});});
热心网友 时间:2022-04-21 00:42
不说理论了,自己去看,有的是资料举个例子给你:
<input type="button" class="wel" value="欢迎" id="welcome">
//这是通过ID访问,还可以根据$(".wel")或者$("input")试试,效果一样$("#welcome").click(function(){
//各种操作
alert("欢迎光临!");
});
热心网友 时间:2022-04-21 04:13
是说标签已经注册了onclick事件,只是要调用是吗?
$("#aa").click();
即触发id为aa的标签的onclick事件
热心网友 时间:2022-04-21 08:01
<script type="text/javascript">
$("#标签的id").click(function(){
alert("点击试试看!");
});
</script>