如何更正此jquery加载点击iframe的新网址?

时间:2014-01-02 06:39:58

标签: javascript jquery iframe

我正在使用此代码,但它无效

 <script>
 $('iframe').load(function(){
 var url = "http://google.com";
 $(this).contents().find("body").on('click', function(event) {
 $(location).attr('href',url); });
 });
 $('iframe').attr("src","JavaScript:'iframe content'");
 </script>

HTML

<iframe src="http://stackoverflow.com"></iframe>

我希望当用户点击来自同一域的iframe时,将加载google。请帮帮我。

0 个答案:

没有答案