Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DOMの準備ができているとき、またはwindow.loadのときに、jQueryを使用して<iframe width = "100%">からwidth属性を削除することは可能ですか?
ありがとう
簡単にするためにiframeにIDを付けてください:
$(document).ready(function() { $('#myFrame').removeAttr('width'); })
絶対。jQueryの場合:
$(document).ready(function() { $('iframe').removeAttr('width'); });
ここの例を参照してください:
http://jsfiddle.net/3rFTF/