【jquery】怎么用js调用标签的onclick事件
答案:6 悬赏:30 手机版
解决时间 2021-08-14 00:25
- 提问者网友:不要迷恋哥
- 2021-08-13 07:31
rt!
最佳答案
- 五星知识达人网友:神鬼未生
- 2021-08-13 08:55
在每一个匹配元素的click事件中绑定一个处理函数。
点击事件会在你的指针设备的按钮在元素上单击时触发。单击的定义是在屏幕的同一点触发了mousedown和mouseup.常用的事件有如下的
Binds 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:
返回值
参数
示例
$("p").click( function () { $(this).hide(); });
点击事件会在你的指针设备的按钮在元素上单击时触发。单击的定义是在屏幕的同一点触发了mousedown和mouseup.常用的事件有如下的
mousedown
mouseup
click
Binds 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:
mousedown
mouseup
click
返回值
jQuery
参数
fn (Function) : 绑定到click事件的函数
示例
将页面内所有段落点击后隐藏。
jQuery 代码:
$("p").click( function () { $(this).hide(); });
全部回答
- 1楼网友:蕴藏春秋
- 2021-08-13 12:53
我觉得你可能是对jquery选择器的了解不够,juqery的选择器和css的是一样的。找个书看看jquery的选择器看看是怎么选中需要的html标签,至于调用click的方法,前面几位已经介绍的很清楚了。
还是就是一定要对jquery的机制了解才能够完全明白。编程这个东西一定要治本才能解决问题
- 2楼网友:躲不过心动
- 2021-08-13 12:25
$('#obj').click(function(){alert();});
- 3楼网友:白昼之月
- 2021-08-13 11:40
<input type="button" class="wel" value="欢迎" id="welcome">
$("#welcome").bind("click",function(){
alert('您点击我了!');
});
- 4楼网友:行雁书
- 2021-08-13 10:16
不说理论了,自己去看,有的是资料举个例子给你: <input type="button" class="wel" value="欢迎" id="welcome"> //这是通过ID访问,还可以根据$(".wel")或者$("input")试试,效果一样
$("#welcome").click(function(){ //各种操作 alert("欢迎光临!"); });
- 5楼网友:一秋
- 2021-08-13 09:11
$(function(){ $("#id").click(function(){ //方法体 });});
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯