jquery 如何根据 dl 包含的文本将类添加到 span 中?

发布于 2024-12-12 05:01:05 字数 541 浏览 0 评论 0原文

我希望能够将 class="st_sharethis" 添加到菜单链接:在此网站上告诉朋友 http://www.easyspacedesign.com/fh/ConnectBell_/。在我们使用的 cms 中,无法将特定的类或 id 添加到菜单链接,因此必须使用 jquery 来完成此操作。

因此,我必须根据 a 标签内的 span 标签内的文本来执行此操作。

到目前为止我已经尝试过了:

  $('.main_menu span:contains("Tell A Friend")').attr('class','st_sharethis');

  $('.main_menu span').each(function ()
  {
    if ($(this).text() == "Tell A Friend")
    $(this).attr('id','rev3');
  }

都没有成功。

I want to be able to add the class="st_sharethis" to the menu link: Tell A Friend on this site http://www.easyspacedesign.com/fh/ConnectBell_/. There is no way to add a specific class or id to a menu link in the cms we use so going to have to use jquery to do it.

So I will have to do it based on the text within the span tag that is within the a tag.

So far i have tried:

  $('.main_menu span:contains("Tell A Friend")').attr('class','st_sharethis');

  $('.main_menu span').each(function ()
  {
    if ($(this).text() == "Tell A Friend")
    $(this).attr('id','rev3');
  }

neither has worked.

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

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

发布评论

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

评论(5

暖风昔人 2024-12-19 05:01:05

这非常适合您的标记:

$('#menu span:contains("Tell A Friend")')
           .addClass('st_sharethis')
           .attr('id','rev3');

实例: http://jsfiddle.net/ydFFR/

This works fine for your markup:

$('#menu span:contains("Tell A Friend")')
           .addClass('st_sharethis')
           .attr('id','rev3');

Live example: http://jsfiddle.net/ydFFR/

橘和柠 2024-12-19 05:01:05

下面向元素添加一个类和 id。

$('.main_menu span:contains("Tell A Friend")')
    .addClass('st_sharethis')
    .attr('id', 'rev3');

The following adds a class and id to the element.

$('.main_menu span:contains("Tell A Friend")')
    .addClass('st_sharethis')
    .attr('id', 'rev3');
空城旧梦 2024-12-19 05:01:05

你的代码没问题,只需要添加一个“);”在最后!

 $('.main_menu span:contains("Tell A Friend")').attr('class','st_sharethis');

   $('.main_menu span').each(function ()
   {
     if ($(this).text() == "Tell A Friend")
     $(this).attr('id','rev3');
   }
 );   // ADD this line !

但当然,最好只是链接命令:

 $('.main_menu span:contains("Tell A Friend")')
  .attr('class','st_sharethis')
  .attr('id','rev3');

Your code is fine, you just need to add a ");" at the end!

 $('.main_menu span:contains("Tell A Friend")').attr('class','st_sharethis');

   $('.main_menu span').each(function ()
   {
     if ($(this).text() == "Tell A Friend")
     $(this).attr('id','rev3');
   }
 );   // ADD this line !

But of course it would be better to just chain the commands:

 $('.main_menu span:contains("Tell A Friend")')
  .attr('class','st_sharethis')
  .attr('id','rev3');
却一份温柔 2024-12-19 05:01:05

如果是最后一次,请尝试

$('a.main_menu.last').find('span').addClass('st_sharethis');

If its the last, try

$('a.main_menu.last').find('span').addClass('st_sharethis');
故事灯 2024-12-19 05:01:05

如果此菜单项始终是最新的:

$('#menu dl dt:last a').addClass('myclass');

此外,您在此菜单项上有特定的类last,因此您可以:

$('dt.last').addClass('myClass');

或者您可以只测试链接的内容:

$('#menu dl dt a span:contains("Tell A Friend")').parent().addClass('myClass');

If this menu item will always be latest one:

$('#menu dl dt:last a').addClass('myclass');

Also, you have specific class last on this menu item, so you can:

$('dt.last').addClass('myClass');

Or you can just test content of the link:

$('#menu dl dt a span:contains("Tell A Friend")').parent().addClass('myClass');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文