我有点束手无策。我得到了我正在使用的这个颜色选择器插件和一些文本框。因此,颜色选择器脚本也将运行并绑定到这些文本框。但是后来我动态地加载了更多的文本框,希望它们在这些文本框上放置颜色选择器插件。
但是目前还不行,我也不知道如何让他们获得这个插件。我尝试“直播”,但效果不太好。
最佳答案
由于$ .live()可能会减慢速度,因此您可以在每次创建新的文本框时考虑重新绑定该函数。
$("#whateverDiv").append("<input type='text' class='specialTextbox' />";
$(".specialTextbox").colorPicker();
//some time later
$("#anotherDiv").append("<input type='text' class='specialTextbox' />";
$(".specialTextbox").colorPicker();