我有这个 NyroModal:
$('.openModal').nyroModal();
然后我有我的链接:
<a href="#sample" class="openModal">this is a test</a>
这很好用,它会加载我的示例模式,但是当我使用添加链接时
$("#mydiv").html('<a href="#sample" class="openModal">this is a test</a>');
这个不行,我试过
$('.openModal a').live('click',function(e) {
e.preventDefault();
$(this).nyroModalManual();
return false;
});
还有这个:
$('.openModal a').live('click',function(e) {
e.preventDefault();
$(this).nmManual("#sample");
return false;
});
但是我没有任何运气,你能想到我可以尝试的其他方法吗?我究竟做错了什么?
谢谢!
更新:我忘了提到我的控制台完全没有错误
更新2:我现在收到此错误,现在我正确选择了它:
未捕获的类型错误:对象 [object Object] 没有方法“nyroModalManual”