jQuery 中这些选择元素的方式有什么区别?

发布于 2024-09-19 11:39:20 字数 485 浏览 2 评论 0原文

如果我有以下标记,

<div id="previewNote" class="note yellow" style="left:25;top:25px;z-index:1;">
   <div class="body"></div>
   <div class="author"></div>
   <span class="data"></span>
</div>

选择“previewNote”DIV

$("#previewNote")

我可以通过使用或

$("[ID$=previewNote]")

甚至其他方式 。当我的元素位于对话框窗口内时,通常第一种方法不起作用,但第二种方法起作用。

两者有哪些区别?

谢谢!

If I have the following markup

<div id="previewNote" class="note yellow" style="left:25;top:25px;z-index:1;">
   <div class="body"></div>
   <div class="author"></div>
   <span class="data"></span>
</div>

I can select the "previewNote" DIV either by using

$("#previewNote")

or

$("[ID$=previewNote]")

and with even other ways. When my element is inside a dialog window usually the first method does not work but the second does.

Which are the differences between the two?

thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

惜醉颜 2024-09-26 11:39:20

$("#previewNote") 选择 idpreviewNote 的元素
$("[ID$=previewNote]") 选择id 结尾的元素 ($) previewNote

更多信息:http:// /api.jquery.com/attribute-ends-with-selector/

$("#previewNote") selects element whose id is previewNote
$("[ID$=previewNote]") selects element whose id ends with ($) previewNote

More Info: http://api.jquery.com/attribute-ends-with-selector/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文