jQuery #id 选择器
jQuery 教程
· 2019-03-09 23:29:16
实例
选取 id 为 "intro" 的元素:
$("#intro")
定义和用法
#id 选择器选取带有指定 id 的元素。
id 引用 HTML 元素的 id 属性。
注意:id 属性在文档内必须是唯一的。
注意:不要使用数字开头的 id 属性!在某些浏览器中可能出问题。
语法
$("#id")
| 参数 | 描述 |
|---|---|
| id | 必需。规定要选取的元素的 id。 |
点击查看所有 jQuery 教程 文章: https://codercto.com/courses/l/35.html
Compilers
Alfred V. Aho、Monica S. Lam、Ravi Sethi、Jeffrey D. Ullman / Addison Wesley / 2006-9-10 / USD 186.80
This book provides the foundation for understanding the theory and pracitce of compilers. Revised and updated, it reflects the current state of compilation. Every chapter has been completely revised ......一起来看看 《Compilers》 这本书的介绍吧!