在JavaScript中,增加单行注释的选项是_________。
A、//Thisisacomment
B、'Thisisacomment
C、
D、--Thisisacomment
下列哪个样式能够显示这样一个边框:上边框10像素、下边框5像素、左边框20像素、右边框1像素?______
A、border—width:10px5px20px1px
B、border—width:10px20px5px1px
C、border—width:5px20pxl0px1px
D、border—width:10px1px5px20px
设在表单中有一组复选钮标记,如下列代码:如果在register.jsp是取city的值,最适合的方法为()。
A、Stringcity=requestgetParameter(“city”);
B、String[]cities=requestgetParameter(“city”);
C、String[]cities=requestgetParameterValues(“city”);
D、Stringcity=requestgetAttribute(“city”);
在CSS中,设置让超级链接没有下划线的选项是_________。
A、a{decoration:nounderline}
B、a{text-decoration:none}
C、a{underline:none}
D、a{text-decoration:nounderline}