未知类型:{'options': ['[param image,"flower.gif"]<', '[param image value= flower .gif]', '[param name= image value="flower .gif"]', '[param name="image"value="flower.gif"]'], 'type': 102}
举一反三
- 要向Applet传递参数,应该在下列drawing.html文件的下画线处填入的选项是( )。 <applet code=DrawImage.class width=100 height=100> </applet> A: <param image,"flower.gif"> B: <param image value=flower.gif> C: <param name=image value="flower.gif"> D: <param name="image"value="flower.gif">
- 以下配置文件上传拦截器只允许bmp图片文件代码,正确的是( )。 未知类型:{'options': ['[param name="allowedTypes"]*.bmp [/]', '[param name="allowedTypes"]bmp [/]', '[param name="allowedTypes"]image/*.bmp [/]', '[param name="allowedTypes"]image/bmp [/]'], 'type': 102}
- 下面哪项是错误的设置Bean属性值的方法( ) 未知类型:{'options': ['[jsp:setPropertyname="beanInstanceName" property= "*" /]', '[jsp:setPropertyname="beanInstanceName" property="propertyName"value="123"/]', '[jsp:setPropertyname="beanInstanceName" property="propertyName"param="parameterName" /]', '[jsp:setPropertyname="beanInstanceName" property="*" value="{string |<%= expression %]}"/>'], 'type': 102}
- 增加表单的复选框的HTML代码是( )。 未知类型:{'options': ['[input type="submit"]', '[input type= "image"]', '[input type="text"]', '[input type="checkbox"]'], 'type': 102}
- 在下列的 HTML 中,哪个可以插入图像? 未知类型:{'options': ['[img href="image.gif"]', '[image src="image.gif"]', '[img src="image.gif"]', ''], 'type': 102}
内容
- 0
下列哪一项表示的不是按钮。( ) 未知类型:{'options': ['[input type="submit"]', '[input type="reset"]', '[input type="image"]', '[input type="button"]'], 'type': 102}
- 1
[jsp:param name=“paramName” value=“paramValue”/]中的name指定参数名,value指定参数值。参数可以是一个或多个值,而这个文件可以是动态文件,也可以是静态文件。
- 2
在HTML页面中包含一个按钮控件mybutton,如果要实现点击该按钮时调用已定义的Javascript函数compute,要编写的HTML代码是( )。 未知类型:{'options': ['[input name=”mybutton” type=”button” onClick=”compute” value=”计算”]', '[input name=”mybutton” type=”button” onFocus=”compute()” value=”计算”]', '[input name=”mybutton” type=”button” onClick=”function compute()” value=”计算”]', '[input name=”mybutton” type=”button” onClick=”compute()” value=”计算”]'], 'type': 102}
- 3
以下哪一条HTML语句用于设置表格的表框颜色( )。 未知类型:{'options': ['[table bordercolor=”red”]…', '[table bgcolor=”red”]…', '[table background=”/image/pic.jpg”]…', '[td bgcolor=”red”]…'], 'type': 102}
- 4
下面代码点击“提交”按钮时会显示被选的复选框的值,代码中下划线处正确的代码为( )。[input type="checkbox" name="aa" value="0" /]0 [input type="checkbox" name="aa" value="1" /]1 [input type="checkbox" name="aa" value="2" /]2 [input type="checkbox" name="aa" value="3" /]3 [input type="button" onclick="abc()" value="提 交" /] [script language="JavaScript"] function abc(){ $("input: ").each(function(){ alert($(this).val()) }) } A: checkbox B: aa C: checked D: :selection