Jquery:还有另一种写法吗,也许使用 .attr?

发布于 2024-11-03 14:58:37 字数 342 浏览 1 评论 0原文

我想我可以将下面的行重写

$('a').filter('[hash=' + inview + ']');

为类似这样的内容:

$('a').attr(href, inview);

显然上面定义了 var inview = yada yada yada

或者是否有另一种方法可以在那里编写第一行,

使用 jquery 并删除诸如 .attr 或 .something(inview) 之类的 [hash='

I thought I could re-write the line below:

$('a').filter('[hash=' + inview + ']');

to something like this:

$('a').attr(href, inview);

obviously with var inview = yada yada yada defined above it.

or is there another way to write the first line up there,

using jquery and getting rid of the [hash=' for something like .attr or .something(inview)?

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

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

发布评论

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

评论(3

要走干脆点 2024-11-10 14:58:37
$('a[hash=' + inview + ']');

应该可以做到这一点。

$('a[hash=' + inview + ']');

That should do it.

与往事干杯 2024-11-10 14:58:37

您想要类似:

$('a[hash="' + inview + '"]')

$('a').attr('hash', inview); 的内容,我认为您对第二行的意思是,实际上设置要查看的哈希属性。

You want something like:

$('a[hash="' + inview + '"]')

$('a').attr('hash', inview);, which is what I assume you meant for your second line, actually sets the hash attribute to inview.

孤芳又自赏 2024-11-10 14:58:37
$('a').attr(href, inview);

供参考,将设置所有要查看的 a 元素的 href

$('a').attr(href, inview);

For reference that would set the href of all a elements to inview

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