不使用css的情况下
2 回答
woshiajuana
TA贡献211条经验 获得超152个赞
<div id="test">测试</div>
js写法:
var doc = document,
getEle = function(ele){return doc.getElementById(ele);},
testEle = getEle('test');
testEle.style.fontSize = 14 + 'px';
testEle.style.backgroundColor= 'red';
陈默有言
TA贡献35条经验 获得超21个赞
Jq写法,首先引入jquery文件 <div class="box">内容</div> <script> $(".box").css({"width":"100px","height":"100px","backgroundColor":"red"}); </script>
- 2 回答
- 0 关注
- 2142 浏览
添加回答
举报
0/150
提交
取消