• 2021-04-14
    HTML 代码 : Header 1 Value 1 Value 2 jQuery 代码 : $("tr:odd") 结果 :
  • Value 1

    内容

    • 0

      智慧职教: 根据以下的HTML代码: <html> <head> <title>表格</title> <head> <body> <table border="1"> <tr> <td >1</td> <td >2</td> </tr> <tr> <td >3</td> </tr> </table> </body> </html> 对以上代码,以下描述正确的是:

    • 1

      HTML 代码 : Name: Newsletter: jQuery 代码 : $("form input") 结果 :

    • 2

      网页的;元素中包含以下HTML代码:;;标题1;;标题2;;下列能弹出"标题1"的Jquery代码是()。 A: alert($('[name=header]').text()); B: alert($("[name='header1']").text()); C: alert($('#header1').text()); D: alert($("#top1").text());

    • 3

      中国大学MOOC: 在网页中有如下HTML代码: ‹input type=‶radio‶ name=‶sex‶ value=‶man‶/›男 ‹input tpe=‶radio‶ name=‶sex‶ value=‶woman‶/›女 则设置选择状态为“女”,正确jquery实现代码为( )。

    • 4

      【单选题】下面代码的输出结果() int value = 3; printf("value = %d ",value); A. value = 3 B. value = %d C. value = %d D. value = 3