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.
我无法更改此元素的高度。我试图通过代码来改变它,但它没有用。这就像应用了默认样式。有谁知道如何更改该默认值?
uploadItem = new UploadItem("image"); uploadItem.setTitle(caption ); uploadItem.setWrapTitle(false); uploadForm.setHeight(500);`
这是萤火虫
你可以使用类似的东西
$('#myimage').width(700); // Units are assumed to be pixels $('#myimage').height(700);
myimage 是你的 div。