私のiFrameは次のようになります。jQueryを使用してsrcをiframeに設定するにはどうすればよいですか?
<iframe id="iframe" name="iframe1" frameborder="0" src=""></iframe>
そして、私のスクリプトは次のようになります。私も、URLの前後に引用符を入れて試してみた
<script type="text/javascript">
$(document).ready(function() {
$('#iframe').attr('src',http://google.com);
})
</script>
:
<script type="text/javascript">
$(document).ready(function() {
$('#iframe').attr('src','http://google.com');
})
</script>
しかしでもありませんワーキング。
私には何が欠けていますか?
ブラウザからエラーが発生しましたか? – rjg132234
http://jsfiddle.net/SLaks/8JKxh/ – SLaks