本文介绍了使用jQuery' click'锂元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个< ul>
元素,该元素可以动态生成< li>
元素,并且只想运行 onclick
事件
I have a <ul>
element that dynamically generates the <li>
elements and simply want to run a onclick
event
<ul id="results">
<li class="device_result searchterm" data-url="apple-iphone-5s">
<a href="#"> Apple iPhone 5s </a>
</li>
<li class="device_result searchterm" data-url="apple-iphone-5c">
<a href="#"> Apple iPhone 5s </a>
</li>
</ul>
我在 $(document).ready
块中有以下jQuery,但它似乎不起作用-有什么想法我做错了吗?
I've got the following jQuery in a $(document).ready
block but it doesn't seem to work - any ideas what I'm doing wrong?
$("li .searchterm").click(function() {
console.log("testing");
});
推荐答案
如果要添加,请在列表上单击,然后选择以下项目:
if you add dinamically put the click on the list but select the items:
$("#results").on("click", ".searchterm", function(event){
console.log('clicked');
});
尝试摆弄小提琴: http://jsfiddle.net/emPKS/
这篇关于使用jQuery&#39; click&#39;锂元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!