gpt4 book ai didi

jquery - 将事件处理程序从 <input> 复制到
一个元素到另一个元素

转载 作者:行者123 更新时间:2023-12-01 03:02:39 25 4
gpt4 key购买 nike

我认为任何类似的现有问题都无法回答这个问题。

我正在开发一个插件,它将变成 <input type='checkbox' />进入<div>有两种切换状态。使用的基本思路是:

$('div .checkboxContainer').prettyBox();

插件本身的伪代码是:

$.fn.prettyBox = function(){
return this.each(function(){
$(this).find(':checkbox').each(function(){
.. grab all event handlers on the current <input>
.. create a new <div>
.. attach all of the <input>'s event handlers to the <div>
.. hide the <input>
.. place the <div> where the <input> used to live
});
};
};

其他提出类似问题的人都关心复制单个事件,例如 click处理程序。为了保持插件的灵 active ,我认为我的代码循环遍历附加到输入的所有内容并将其复制过来非常重要。

最佳答案

试试这个

$.fn.prettyBox = function(){
return this.each(function(){
$(this).find(':checkbox').each(function(){
//Grabs all the events
var events = $(this).data("events");
var $div = $("<div />");

//Loop through all the events
$.each(events, function(i, event) {
//Loop through all the handlers attached for a event
$.each(event, function(j, h) {
//Bind the handler with the event
$div.bind(i, h.handler);
});
});

$(this).hide().after($div);
});
};
};

关于jquery - 将事件处理程序从 &lt;input&gt; 复制到 <div> 一个元素到另一个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6935837/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com