根据 id 选择(通过 id 只能选择一个对象), 如: $("#div2")
根据标签选择, 如: $("span")
根据样式的类名选择, 如: $(".class1")
选择所有对象是: $("*")
可混合使用, 如(复制代码):
可分层选择, 如: $(".class1 div label")
如: $(".class1 span")
只从子层中选择, 如: $(".class1 > span"); 如果没有中间的 > 会选择其下的所有符合条件的子孙对象
其后的, 如: $("div + span"); 这会选择所有紧跟在 div 后面的 span
同一层级(后面)的, 如: $("#id2 ~ *"); 这是选择 #id2 后面同一层级的所有(*)对象
混合使用, 如: $("#id3 label, #id3 ~ span")
文章图片所用的测试工具下载地址
JavaScriptTest2.rar
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn