我希望iframe中名为“test”的类可以在父级中运行jquery代码,我尝试了以下,它不起作用
家长:
$("#listing").$(".test").click(function() {
alert($(this).attr('title'));
return false;
});
iframe <iframe id="listing"> :
<a href="/89" title="hello" class="test">Click</a>
<a href="/90" title="hello2" class="test">Click</a>
我应该怎么办?谢谢