Questions tagged «click»

在用户界面中,单击是指按下鼠标按钮或类似输入设备。

6
使用jquery click处理锚点onClick()
我在for循环中有一组动态生成的锚标记,如下所示: <div id = "solTitle"> <a href = "#" id = "' + tagId + '" onClick = "openSolution();"> ' + solTitle + '</a></div> <br>'; 执行此代码后,其中一种情况的html输出将如下所示: <div id = "solTitle"> <a href = "#" id = "solution0" onClick = "openSolution();">Solution0 </a></div> <br> <div id = "solTitle"> <a href = "#" …

8
使用javascript / jquery模拟对“ a”元素的点击
我正在尝试模拟对元素的单击。HTML相同如下 <a id="gift-close" href="javascript:void(0)" class="cart-mask-close p-abs" onclick="_gaq.push(['_trackEvent','voucher_new','cart',$(this).attr('rel')+'-mask_x_button-inaction']);" rel="coupon"> </a> 我如何模拟点击它。我试过了 document.getElementById("gift-close").click(); 但是它什么也没做

6
jQuery绑定单击*任何*,但*元素*
假设有一些元素在浮动,当我单击除指定的元素(例如div#special)以外的任何内容(divs,body等)时,我正在尝试执行一些操作。 我想知道除了以下我能想到的方法之外,还有没有更好的方法来实现这一目标... $(document).bind('click', function(e) { get mouse position x, y get the element (div#special in this case) position x, y get the element width and height determine if the mouse is inside the element if(inside) do nothing else do something });
72 jquery  click 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.