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%" > 中删除宽度属性?
谢谢
在您的 iframe 上放置一个 ID 以简化操作:
$(document).ready(function() { $('#myFrame').removeAttr('width'); })
绝对地。使用 jQuery:
$(document).ready(function() { $('iframe').removeAttr('width'); });
请参见此处的示例:
http://jsfiddle.net/3rFTF/