我有UI框架生成的元素如下:
<div id="GENERATED_CONTAINER" style="position: fixed; z-index: 100; left: 368px; top: 52px; width: 545px; height: 846px;">
<div id="GENERATED_CONTENT style="opacity: 0.1; left: 5px; top: 5px; bottom: -5px; width: 545px; height: 846px;">
</div>
</div>
我需要编写一个脚本,用于从样式属性中删除width
和height
。
var elems = $("[id^='GENERATED_']");
//what should I apply now?
答案 0 :(得分:2)
只需写下.css
$("[id^='GENERATED_']").css({
width: 'inherit', //or the value
height: 'inherit' //or the value
})
答案 1 :(得分:1)
$("[id^='GENERATED_']").css({width:0px,height:0px})
答案 2 :(得分:1)