运行下面代码,弹出的对话框中输出_________。<;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>;
举一反三
- 下面代码点击“提交”按钮时会显示被选的复选框的值,代码中下划线处正确的代码为( )。[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
- 阅读以下代码段,则可知 <input type="text" name="textfield"> <input type="radio" name="radio" value="女"> <input type="checkbox" name="checkbox" value="checkbox"> <input type="file" name="file">
- 下图是HTML文件submit.html在IE中的部分显示效果。请完成下面submit.html中部分html代码。<form action=/cgi-bin/post-query method=POST>您的姓名:<input type=text name=姓名><br>您的主页的网址:<input type= text name=网址value=http://><br>密码:<input type=()name=密码><br><input type=submit value=“发送”><input type=()value=“重设”></form> <input type=()name=密码><br> A: text B: password C: passwd D: key
- HTML代码:Name:</label>Newsletter:</label></fieldset></form>jQuery代码:$('label+input')结果:
- 智慧职教: 利用jQuery实现全选反选全不选,网页外观代码如下。 <script type="text/html" style='display:block'> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body> <input type="checkbox" name="check" value="a"/>a <input type="checkbox" name="check" value="b"/>b <input type="checkbox" name="check" value="c"/>c <input type="button" value="全选" id="btn"/> </body> </html> </script>