某网页中包含一个表单元素,代码如下:[form][input type="text" value="test"][/]如果想用弹出窗口显示该文本框中的值,应该写哪句JavaScript语句?
A: alert(document.forms[0].elements[0].value);
B: alert(document.form[0].elements[0].value);
C: alert(document.form[0].elements[0].text);
D: alert(document.forms[0].elements[0].text);
A: alert(document.forms[0].elements[0].value);
B: alert(document.form[0].elements[0].value);
C: alert(document.form[0].elements[0].text);
D: alert(document.forms[0].elements[0].text);
举一反三
- 运行下面代码,弹出的对话框中输出_________。<;script type="text/javascript">;$(document).ready(function(){alert($("label + input").val());});<;/script>;<;form>;<;input name="name" value="111"/>;<;label>;Number:<;/label>;<;input name="newsletter" value="222"/>;<;/form>;
- html> [head] [script type="text/javascript" src="jquery.________"][/] [script type="text/javascript"] $(document).ready(function(){ $("#btn").click(function(){ alert("hello"); }); }); [/] [/] [body] [button ________="btn"]单击我[/] [/] </html
- 下面代码点击“提交”按钮时会显示被选的复选框的值,代码中下划线处正确的代码为( )。[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
- 有一个HTML页面,其源码中有如下内容 [img=554x88]17d60e906775b24.png[/img]以下获取form中id为name的输入框的值的JavaScript代码,其中错误的是( )。 A: document.getElementsByTagName('input')[0].value B: document.forms[0].childNodes[0].value C: document.getElementById('name').value D: document.getElementById('myform').childNodes[1].value
- 大多数表单元素是由输入标签[()]定义的 A: form B: input C: text D: value