我有一些代码,我循环浏览页面上的所有选择框并将.hover
事件绑定到它们,以便在mouse on/off
上对它们的宽度进行一些调整。
这在页面就绪时就会发生,并且运行正常。
我遇到的问题是我在初始循环后通过Ajax或DOM添加的任何选择框都没有绑定事件。
我找到了这个插件(jQuery Live Query Plugin),但在我用插件添加另外5k到我的页面之前,我想知道是否有人知道这样做的方法,无论是直接使用jQuery还是通过其他选项
答案 0 :(得分:2023)
从jQuery 1.7开始,您应该使用jQuery.fn.on
:
$(staticAncestors).on(eventName, dynamicChild, function() {});
在此之前,推荐的方法是使用live()
:
$(selector).live( eventName, function(){} );
但是,live()
在1.7中被弃用而不是on()
,并在1.9中完全删除。 live()
签名:
$(selector).live( eventName, function(){} );
...可以替换为以下on()
签名:
$(document).on( eventName, selector, function(){} );
例如,如果您的页面是动态创建类名为dosomething
的元素,您可以将事件绑定到已存在的父级(这是此处问题的核心,你需要存在要绑定的东西,不要绑定到动态内容),这可能是(最简单的选择)是document
。但请记住document
may not be the most efficient option。
$(document).on('mouseover mouseout', '.dosomething', function(){
// what you want to happen when mouseover and mouseout
// occurs on elements that match '.dosomething'
});
绑定事件时存在的任何父级都可以。例如
$('.buttons').on('click', 'button', function(){
// do something here
});
适用于
<div class="buttons">
<!-- <button>s that are generated dynamically and added here -->
</div>
答案 1 :(得分:343)
jQuery.fn.on
的文档中有一个很好的解释。
简而言之:
事件处理程序仅绑定到当前选定的元素;在您的代码调用
.on()
时,它们必须存在于页面上。
因此,在以下示例中,#dataTable tbody tr
必须在生成代码之前存在。
$("#dataTable tbody tr").on("click", function(event){
console.log($(this).text());
});
如果将新HTML注入页面,最好使用委托事件来附加事件处理程序,如下所述。
委派事件的优势在于,他们可以处理来自稍后添加到文档的后代元素的事件。例如,如果表存在,但是使用代码动态添加行,则以下将处理它:
$("#dataTable tbody").on("click", "tr", function(event){
console.log($(this).text());
});
除了能够处理尚未创建的后代元素上的事件之外,委托事件的另一个优点是,当必须监视许多元素时,它们可能会有更低的开销。在tbody
中包含1,000行的数据表中,第一个代码示例将处理程序附加到1,000个元素。
委托事件方法(第二个代码示例)仅将事件处理程序附加到一个元素tbody
,并且事件只需要向上一级(从单击的tr
到tbody
)。
注意:委派活动不适用于SVG。
答案 2 :(得分:187)
这是一个没有任何库或插件的纯JavaScript 解决方案:
document.addEventListener('click', function (e) {
if (hasClass(e.target, 'bu')) {
// .bu clicked
// Do your thing
} else if (hasClass(e.target, 'test')) {
// .test clicked
// Do your other thing
}
}, false);
其中hasClass
是
function hasClass(elem, className) {
return elem.className.split(' ').indexOf(className) > -1;
}
的 Live demo 强>
归功于Dave和Sime Vidas
使用更现代的JS,hasClass
可以实现为:
function hasClass(elem, className) {
return elem.classList.contains(className);
}
答案 3 :(得分:66)
您可以在创建对象时向对象添加事件。如果要在不同时间向多个对象添加相同的事件,则可能需要创建命名函数。
var mouseOverHandler = function() {
// Do stuff
};
var mouseOutHandler = function () {
// Do stuff
};
$(function() {
// On the document load, apply to existing elements
$('select').hover(mouseOverHandler, mouseOutHandler);
});
// This next part would be in the callback from your Ajax call
$("<select></select>")
.append( /* Your <option>s */ )
.hover(mouseOverHandler, mouseOutHandler)
.appendTo( /* Wherever you need the select box */ )
;
答案 4 :(得分:45)
您可以简单地将事件绑定调用包装到函数中,然后调用它两次:一次是在文档准备就绪,一次是在添加新DOM元素的事件之后。如果这样做,您将希望避免在现有元素上绑定相同的事件两次,因此您需要解除现有事件的绑定或(更好)仅绑定到新创建的DOM元素。代码看起来像这样:
function addCallbacks(eles){
eles.hover(function(){alert("gotcha!")});
}
$(document).ready(function(){
addCallbacks($(".myEles"))
});
// ... add elements ...
addCallbacks($(".myNewElements"))
答案 5 :(得分:38)
尝试使用.live()
代替.bind()
;执行Ajax请求后,.live()
会将.hover
绑定到您的复选框。
答案 6 :(得分:21)
您可以使用live()方法将元素(甚至是新创建的元素)绑定到事件和处理程序,例如onclick事件。
以下是我编写的示例代码,您可以在其中看到live()方法如何将所选元素(甚至是新创建的元素)绑定到事件:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.16/jquery-ui.min.js"></script>
<input type="button" id="theButton" value="Click" />
<script type="text/javascript">
$(document).ready(function()
{
$('.FOO').live("click", function (){alert("It Works!")});
var $dialog = $('<div></div>').html('<div id="container"><input type ="button" id="CUSTOM" value="click"/>This dialog will show every time!</div>').dialog({
autoOpen: false,
tite: 'Basic Dialog'
});
$('#theButton').click(function()
{
$dialog.dialog('open');
return('false');
});
$('#CUSTOM').click(function(){
//$('#container').append('<input type="button" value="clickmee" class="FOO" /></br>');
var button = document.createElement("input");
button.setAttribute('class','FOO');
button.setAttribute('type','button');
button.setAttribute('value','CLICKMEE');
$('#container').append(button);
});
/* $('#FOO').click(function(){
alert("It Works!");
}); */
});
</script>
</body>
</html>
答案 7 :(得分:21)
单个元素:
$(document.body).on('click','.element', function(e) { });
子元素:
$(document.body).on('click','.element *', function(e) { });
注意添加的*
。将为该元素的所有子项触发事件。
我注意到了:
$(document.body).on('click','.#element_id > element', function(e) { });
它不再起作用,但它之前正在工作。我一直在使用谷歌CDN的jQuery,但我不知道他们是否改变了它。
答案 8 :(得分:16)
另一种解决方案是在创建元素时添加侦听器。不是将侦听器放在主体中,而是在创建它时将侦听器放在元素中:
var myElement = $('<button/>', {
text: 'Go to Google!'
});
myElement.bind( 'click', goToGoogle);
myElement.append('body');
function goToGoogle(event){
window.location.replace("http://www.google.com");
}
答案 9 :(得分:16)
我更喜欢使用选择器并将其应用于文档。
这会在文档上自行绑定,并且适用于页面加载后将呈现的元素。
例如:
$(document).on("click", $(selector), function() {
// Your code here
});
答案 10 :(得分:12)
注意&#34; MAIN&#34;放置元素的类,例如
<div class="container">
<ul class="select">
<li> First</li>
<li>Second</li>
</ul>
</div>
在上面的场景中,jQuery将观看的MAIN对象是&#34; container&#34;。
然后,您基本上会在容器下面添加元素名称,例如ul
,li
和select
:
$(document).ready(function(e) {
$('.container').on( 'click',".select", function(e) {
alert("CLICKED");
});
});
答案 11 :(得分:12)
使用jQuery(html, attributes)
动态创建时,您可以将事件附加到元素。
从jQuery 1.8 开始,任何jQuery实例方法(
jQuery.fn
的方法)都可以用作传递给它的对象的属性 第二个参数:
function handleDynamicElementEvent(event) {
console.log(event.type, this.value)
}
// create and attach event to dynamic element
jQuery("<select>", {
html: $.map(Array(3), function(_, index) {
return new Option(index, index)
}),
on: {
change: handleDynamicElementEvent
}
})
.appendTo("body");
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
</script>
答案 12 :(得分:11)
你可以使用
$('.buttons').on('click', 'button', function(){
// your magic goes here
});
或
$('.buttons').delegate('button', 'click', function() {
// your magic goes here
});
这两种方法是等价的,但参数顺序不同。
答案 13 :(得分:8)
以下是动态创建的元素不响应点击的原因:
var body = $("body");
var btns = $("button");
var btnB = $("<button>B</button>");
// `<button>B</button>` is not yet in the document.
// Thus, `$("button")` gives `[<button>A</button>]`.
// Only `<button>A</button>` gets a click listener.
btns.on("click", function () {
console.log(this);
});
// Too late for `<button>B</button>`...
body.append(btnB);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button>A</button>
作为一种解决方法,您必须收听所有点击并检查源元素:
var body = $("body");
var btnB = $("<button>B</button>");
var btnC = $("<button>C</button>");
// Listen to all clicks and
// check if the source element
// is a `<button></button>`.
body.on("click", function (ev) {
if ($(ev.target).is("button")) {
console.log(ev.target);
}
});
// Now you can add any number
// of `<button></button>`.
body.append(btnB);
body.append(btnC);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button>A</button>
这称为“事件委托”。好消息,它是jQuery的内置功能: - )
var i = 11;
var body = $("body");
body.on("click", "button", function () {
var letter = (i++).toString(36).toUpperCase();
body.append($("<button>" + letter + "</button>"));
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button>A</button>
答案 14 :(得分:7)
绑定事件时,任何p 不存在,并且您的网页使用班级名称按钮动态创建元素将事件绑定到已存在的父级
$(document).ready(function(){
//Particular Parent chield click
$(".buttons").on("click","button",function(){
alert("Clicked");
});
//Dynamic event bind on button class
$(document).on("click",".button",function(){
alert("Dymamic Clicked");
});
$("input").addClass("button");
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="buttons">
<input type="button" value="1">
<button>2</button>
<input type="text">
<button>3</button>
<input type="button" value="5">
</div>
<button>6</button>
答案 15 :(得分:6)
试试这个 -
$(document).on( 'click', '.click-activity', function () { ... });
答案 16 :(得分:5)
这是通过事件委派 完成的。 Event将绑定在wrapper-class元素上,但会被委托给selector-class元素。这是它的工作原理。
$('.wrapper-class').on("click", '.selector-class', function() {
// Your code here
});
wrapper-class元素可以是ex。文件,正文或你的包装。 Wrapper应该已经存在。但是,selector
不一定需要在页面加载时出现。它可能会在以后发生,事件将在selector
上绑定。
答案 17 :(得分:3)
使用jQuery http://api.jquery.com/on/的.on()
方法将事件处理程序附加到live元素。
同样版本1.9 .live()
方法已删除。
答案 18 :(得分:3)
将事件绑定到已存在的父级:
$(document).on("click", "selector", function() {
// Your code here
});
答案 19 :(得分:1)
另一种创建元素和绑定事件的灵活解决方案(source)
// creating a dynamic element (container div)
var $div = $("<div>", {id: 'myid1', class: 'myclass'});
//creating a dynamic button
var $btn = $("<button>", { type: 'button', text: 'Click me', class: 'btn' });
// binding the event
$btn.click(function () { //for mouseover--> $btn.on('mouseover', function () {
console.log('clicked');
});
// append dynamic button to the dynamic container
$div.append($btn);
// add the dynamically created element(s) to a static element
$("#box").append($div);
注意:这将为每个元素创建一个事件处理程序实例(在循环中使用时可能会影响性能)
答案 20 :(得分:1)
我更喜欢以模块化函数方式部署事件侦听器,而不是编写const { width, height } = this.size;
const tCan = document.createElement('canvas');
// block scope to clean up temporary variables
{
const tCtx = tCan.getContext('2d');
const imgData = tCtx.createImageData(width, height);
tCan.width = width;
tCan.height = height;
imgData.data.set(this.pixArray);
tCtx.putImageData(imgData, 0, 0);
}
this.draw = (ctx, x, y, scale) => {
ctx.drawImage(tCan, x, y, Math.round(width * scale), Math.round(height * scale));
};
级事件侦听器的脚本。所以,我喜欢下面的内容。 注意,您不能使用相同的事件监听器超额订阅元素,因此不要担心多次附加监听器 - 只有一个。
document
&#13;
答案 21 :(得分:-1)
<html>
<head>
<title>HTML Document</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
</head>
<body>
<div id="hover-id">
Hello World
</div>
<script>
jQuery(document).ready(function($){
$(document).on('mouseover', '#hover-id', function(){
$(this).css('color','yellowgreen');
});
$(document).on('mouseout', '#hover-id', function(){
$(this).css('color','black');
});
});
</script>
</body>
</html>
答案 22 :(得分:-1)
我正在寻找一个解决方案,让$.bind
和$.unbind
在动态添加的元素中正常运行。
由于on()制作附加事件的技巧,为了对我来到的人创造一个虚假的解除绑定:
const sendAction = function(e){ ... }
// bind the click
$('body').on('click', 'button.send', sendAction );
// unbind the click
$('body').on('click', 'button.send', function(){} );