假设我p
在文档中有两个标签。当onMouseOver事件发生时,我想使用jQuery调用两种不同的效果。是否有必要为这两个标签指定 ID。如果不给这些标签提供 ID,就不能实现吗?p
问问题
80 次
4 回答
5
您不必提供任何东西id
,但它是唯一标识元素的最佳方式。
您可以改为按类识别:
$(".myClass")
按属性:
$("[src='image.jpg']")
按父级中的位置:
$("p:eq(2)")
文档中提供了完整的选择器列表
于 2012-04-12T11:06:32.923 回答
5
$('p:first'); // first p tag
$('p:last'); // last p tag
$('p').eq(1); // exactly the second p tag
于 2012-04-12T11:08:45.620 回答
3
有几种方法可以选择一个元素/元素:
$('.classname')
$('#id')
$('tagname')
$('[attr="value"]')
ETC
于 2012-04-12T11:08:07.743 回答
3
虽然 jQuery 可以让你编写更快更简单的脚本,但不幸的是它让你永远无法理解真正的 JavaScript。
$("*") //selects all elements.
$(":animated") //selects all elements that are currently animated.
$(":button") //selects all button elements and input elements with type="button".
$(":odd") //selects even elements.
$(":odd") //selects odd elements.$("p") selects all <p> elements.
$("p.intro") //selects all <p> elements with class="intro".
$("p#intro") //selects the first <p> elements with id="intro".
$(this) //Current HTML element
$("p#intro:first") //The first <p> element with id="intro"
$("p:eq(2)") // The third <p> element in the DOM
$(".intro") //All elements with class="intro"
$("#intro") //The first element with id="intro"
$("ul li:first") //The first <li> element of the first <ul>
$("ul li:first-child") //The first <li> element of every <ul>
$("[href]") //All elements with an href attribute
$("[href$='.jpg']") //All elements with an href attribute that ends with ".jpg"
$("[href='#']") //All elements with an href value equal to "#"
$("[href!='#']") //All elements with an href value NOT equal to "#"
$("div#intro .head") //All elements with class="head" inside a <div> element with id="intro"
jQuery – 选择元素备忘单
于 2012-04-12T11:15:17.693 回答