如何将特定的 Javascript 行写入 Jquery 语法?
我正在尝试编写一个 skp nav 链接脚本,但我不想获取 id,而是想获取该类。如何用 jquery 语法编写以下脚本来获取类名?
$(document).ready(function() {
$(".ajax-video").click(function(event) {
event.preventDefault();
document.getElementById("currently-playing-title").scrollIntoView();
});
});
此外,由于某种原因,以下内容不起作用:
$('.videoplayer').scrollIntoView();
I am trying to write a skp nav link script but instead of grabbing the id i want to grab the class. How can I write the following script in jquery syntax to get the class name?
$(document).ready(function() {
$(".ajax-video").click(function(event) {
event.preventDefault();
document.getElementById("currently-playing-title").scrollIntoView();
});
});
Also for some reason the following does not work:
$('.videoplayer').scrollIntoView();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试
$('.videoplayer')
一个 jQuery 集合,这样您只能在其上运行 jQuery 函数。[0]
访问该集合中的第一个 DOM 元素。请注意,如果您有多个带有
videoplayer
类的元素,您可能会在这里得到意外的结果。老实说,使用元素 ID 更好。如果您有多个带有
.videoplayer
的元素,但一次只有一个元素可见(选项卡等),您还可以尝试:try
$('.videoplayer')
a jQuery collection and so you can only run jQuery functions on it.[0]
accesses the first DOM element in that collection.Note that if you have more than one element with the
videoplayer
class, you may get unexpected results here. It's honestly better to use the element ID.If you have multiple elements with
.videoplayer
, but only one is visible at a time (tabs, etc), you can also try:下面展示了如何通过标识符获取类属性:
The following shows how to obtain the class attribute via the identifier:
抱歉,我无法对 cwolves 的答案发表评论,但 jQuery.get() 是获取 DOM 引用的首选用法。
使用 [0] 也可以,但使用 .get() 会使代码看起来更干净,只是稍微干净一点。
Sorry, I'm not able to make a comment on cwolves' answer, but jQuery.get() is preferred usage for fetching the DOM ref.
Using [0] works too, but using .get() results in cleaner looking code, just slightly.