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.
我想要一个按钮出现在图像上。单击按钮时,图像应在整个浏览器窗口中展开。我认为这很有意义。
谢谢。
$('#expand').on('click',function(){ $('img#myImage').width($(window).width()); $('img#myImage').height($(window).height()); });
演示--> http://jsfiddle.net/mohammadAdil/VWqum/3/