level 3
一副西瓜-
楼主
在页面放置如下元素:<div id="box"></div>,以下哪种写法无法实现如下样式设置:宽度500px,高度200px,背景色#ccc,内边距20px,内容:hello world。( )。
C.$('#box').css('width':'500px').css('height':'200px').css('background':'#ccc').css('padding':'20px').html("hello world")
D.$('#box').css({‘width’:’500px’,’height’:’200px’,’background’:’#ccc’,’padding’:’20px’}).html("hello world")
2020年06月17日 02点06分
1
C.$('#box').css('width':'500px').css('height':'200px').css('background':'#ccc').css('padding':'20px').html("hello world")
D.$('#box').css({‘width’:’500px’,’height’:’200px’,’background’:’#ccc’,’padding’:’20px’}).html("hello world")