jQuery #id 选择器

  • 定义和用法

    #id 选择器 选择具有特定 id 的元素。
    id 指的是 HTML 元素的 id 属性。
    注意:id 属性在文档中必须是唯一的。
    注意:不要使用数字启动 id 属性。它可能会导致某些浏览器出现问题。
  • 语法

    $("#id")
  • 参数

    参数 必需的 描述
    id 指定要选择的元素的id参数
  • 示例

    下例演示了点击按钮隐藏选择id为“test”的元素:
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>欢迎来到蝴蝶教程</title>
    //此版本是百度cdn 1.11.1,当然你可以使用更高的版本,从2.0版本以上的是不支持ie6-8的
    <script type="text/javascript" src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
    <script>
      $(document).ready(function(){
         $("button").click(function(){
            $("#test").hide();
         });
      });
    </script>
    </head>
    <body>
        <p>这个是段落p1</p>
        <p>这个是段落p2</p>
        <p id="test">这是段落id。</p>
        <button type="button">点击我</button>
    </body>
    </html>
    
    尝试一下
    点击尝试一下,输出结果如下图所示:
    图片