单项选择题制作移动端页面哪个布局方式不适合?()

A.响应式Responsive(使用@media媒体查询,给不同尺寸和介质的设备切换不同的样式)
B.伸缩Flexbox(使用CSS3 Flex系列属性进行相对布局)
C.固定Fixed(使用px和pt这样的绝对单位进行固定布局)
D.流动Fluid(使用%百分比进行相对布局)


您可能感兴趣的试卷

你可能感兴趣的试题

1.单项选择题下列哪个标签适合定义导航?()

A.nav
B.progress
C.article
D.aside

2.单项选择题给页面中ID为“div1”的元素的所有后代元素添加“click”事件,以下正确的是()。

A.$("#div1").on("click")
B.$("#div1").next().on("click")
C.$("#div1").siblings().on("click")
D.$("#div1").find("*").on("click")

3.单项选择题以下添加键盘事件代码正确的是()。

A.$(document).bind("keyup")
B.$(document).bind("mouseup")
C.$(document).bind("click")
D.$(document).on("load")

4.单项选择题定义一个jQuery插件函数正确的写法是()。

A.$.fn.demo=function(){}
B.$.exent("demo")
C.$.event="demo"
D.$.demo

5.单项选择题

的打印结果是()。

A.pic
B.undefined
C.img
D.程序报错

6.单项选择题想要获取到select元素内被选中的option元素,以下书写正确的是()。

A.$("select").filter("option:selected")
B.$("select").find("option:selected")
C.$("select").is("option:selected")
D.$("select").has("option:selected")

7.单项选择题jQuery中的加号选择器相当于以下哪个方法?()

A.next()
B.siblings()
C.nextAll()
D.prev()

8.单项选择题在鼠标事件中,获取鼠标相对于当前窗口可视区域的纵坐标位置,以下代码正确的是()。

A.event.offset().top
B.event.clientY
C.event.offsetTop
D.event.pageY

9.单项选择题()方法可以使元素重复切换样式?

A.className()
B.addClass()
C.toggleClass()
D.removeClass()

10.单项选择题已知代码var $a=$(";#a1";),$b=$(";#b1";),$c=$(";#c1";);如果想将$c插入到$a的前面,以下代码正确的是()。

A.$a.before($c);
B.$c.appendTo($a);
C.$c.before($a);
D.$a.prependTo($c);