使用下划线模板从另一个函数 jQuery 内部调用的事件不起作用
我有一个用于将元素添加到列表的函数,我希望在与该列表交互时运行事件,例如单击。如果我使用文档对象执行此操作,则效果很好,但是如果我将 jQuery 与下划线模板一起使用,则元素会成功附加,但事件不会触发。
var addElement = function(parentElement){
//would work
this.thisElement = document.createElement('li');
parentElement.appendChild(thisElement);
$(this.thisElement).click(function(event){
alert('working');
});
//doensn't work
this.template = _.template($('#fileListEntity').html());
var li = this.template();
$(parentElement).append(li);
$(li).click(function(e) {
alert('notWorking');
});
};
I have a function which i used to add elements to a list, I want to have events run on interaction with this list, e.g. click. If I do it using the document object it works well however if I use jQuery with underscore templates the element is successfully appended but the events will not trigger.
var addElement = function(parentElement){
//would work
this.thisElement = document.createElement('li');
parentElement.appendChild(thisElement);
$(this.thisElement).click(function(event){
alert('working');
});
//doensn't work
this.template = _.template($('#fileListEntity').html());
var li = this.template();
$(parentElement).append(li);
$(li).click(function(e) {
alert('notWorking');
});
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您支持 template() 返回一个元素吗?如果它返回一个字符串(大多数模板系统都会这样做),则单击事件将不起作用。
不关闭 click 方法也存在语法错误。
are you shore that template() returns a element. if it returns a string (witch most template system do) that click event wont work.
also there's syntactic errors with not closing the click method.
所以在 Megakorre 的帮助下,这就是答案。
so with the help of megakorre this is the answer.