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.
我想知道是否有任何方法可以改变框架的大小?我的网站顶部有一个框架在播放音乐,我想添加一个 (+) 按钮来扩展它或类似的东西。有什么建议或想法吗?先感谢您。
也许这应该这样做:
$('button').click(function(){ $('#frame').css('width':'400px'); });
其中#frame 是您的框架ID。