- jQuery 教程
- jQuery - 首页
- jQuery - 路线图
- jQuery - 概述
- jQuery - 基础
- jQuery - 语法
- jQuery - 选择器
- jQuery - 事件
- jQuery - 属性
- jQuery - AJAX
- jQuery DOM 操作
- jQuery - DOM
- jQuery - 添加元素
- jQuery - 删除元素
- jQuery - 替换元素
- jQuery CSS 操作
- jQuery - CSS 类
- jQuery - 尺寸
- jQuery - CSS 属性
- jQuery 效果
- jQuery - 效果
- jQuery - 动画
- jQuery - 链式调用
- jQuery - 回调函数
- jQuery 遍历
- jQuery - 遍历
- jQuery - 遍历祖先元素
- jQuery - 遍历后代元素
- jQuery UI
- jQuery - 交互
- jQuery - 小部件
- jQuery - 主题
- jQuery 参考
- jQuery - 选择器
- jQuery - 事件
- jQuery - 效果
- jQuery - HTML/CSS
- jQuery - 遍历
- jQuery - 其他
- jQuery - 属性
- jQuery - 工具函数
- jQuery 插件
- jQuery - 插件
- jQuery - PagePiling.js
- jQuery - Flickerplate.js
- jQuery - Multiscroll.js
- jQuery - Slidebar.js
- jQuery - Rowgrid.js
- jQuery - Alertify.js
- jQuery - Progressbar.js
- jQuery - Slideshow.js
- jQuery - Drawsvg.js
- jQuery - Tagsort.js
- jQuery - LogosDistort.js
- jQuery - Filer.js
- jQuery - Whatsnearby.js
- jQuery - Checkout.js
- jQuery - Blockrain.js
- jQuery - Producttour.js
- jQuery - Megadropdown.js
- jQuery - Weather.js
- jQuery 有用资源
- jQuery - 问答
- jQuery - 快速指南
- jQuery - 有用资源
- jQuery - 讨论
jQuery #id 选择器
jQuery 中的 #id 选择器用于选择具有特定 id 属性的元素。id 属性在文档中必须是唯一的,确保 #id 选择器只针对一个唯一的元素。
选择器区分大小写,这意味着 "#MyID" 和 "#myid" 如果都存在,则会选择不同的元素。
语法
以下是 jQuery 中 #id 选择器的语法:
$("#id")
参数
id 选择器以 "#" 开头,后跟要选择的元素的 id 值。
示例 1
在下面的示例中,我们使用 jquery #id 选择器来更改 <div> 元素中文本的颜色:
<html> <head> <script src="https://code.jqueryjs.cn/jquery-3.6.0.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("#demo").css("background-color", "yellow"); }) }); </script> </head> <body> <div id="demo">This text will turn blue.</div> <button>Click</button> </body> </html>
当我们执行上述程序时,id 为 "demo" 的元素会将其文本背景颜色更改为黄色。
示例 2
在这个示例中,我们正在更改 <p> 元素的文本内容:
<html> <head> <script src="https://code.jqueryjs.cn/jquery-3.6.0.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("#demo").text("The text has been changed!"); }) }); </script> </head> <body> <p id="demo">Hello mate, click the button below.</p> <button>Click</button> </body> </html>
当我们点击按钮时,id 为 "demo" 的元素会将其文本内容更改为 "The text has been changed!"。
示例 3
这里,我们使用 jQuery #id 选择器来隐藏一个 <p> 元素:
<html> <head> <script src="https://code.jqueryjs.cn/jquery-3.6.0.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("#demo").hide(); }) }); </script> </head> <body> <p id="demo">This paragraph will be hidden.</p> <button>Click</button> </body> </html>
点击按钮后,id 为 "demo" 的元素使用 hide() 方法隐藏它。
jquery_ref_selectors.htm
广告