html中有一个iframe:
<iframe id="frame" src="http://www.wikipedia.org/" frameBorder="0" width="1000px" height="700px"></iframe>
还有jquery代码:
$(document).ready(function() {
$('body', $('#frame')).contents().find('a').click(function(event) {
alert("Link Clicked");//not work
});
});
怎么办,点击iframe的维基百科不同的链接,它说链接被点击?
谢谢