最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - how to add text to span jQuery - Stack Overflow

programmeradmin4浏览0评论

I have this jQuery code that I am using to create a dynamic menu

function createList(test){
      alert(test);
        $('#nav')
        .append('<li class="top"><a href="nogo2" id="products" class="top_link"><span class="down"></span></a></li>');
        $('.down').text(test);
    }

the problem that I have is when I try to add the text to the span

$('.down').text(test);

the menu changes to whatever value is the last for example if my values are a b c d e then all my menus e e e e e can any body help me thanks

I have this jQuery code that I am using to create a dynamic menu

function createList(test){
      alert(test);
        $('#nav')
        .append('<li class="top"><a href="nogo2" id="products" class="top_link"><span class="down"></span></a></li>');
        $('.down').text(test);
    }

the problem that I have is when I try to add the text to the span

$('.down').text(test);

the menu changes to whatever value is the last for example if my values are a b c d e then all my menus e e e e e can any body help me thanks

Share Improve this question edited Apr 13, 2019 at 4:27 Shiladitya 12.2k17 gold badges28 silver badges42 bronze badges asked May 7, 2013 at 19:25 user1766952user1766952 1732 gold badges6 silver badges17 bronze badges 4
  • You're setting the text to all elements with the class .down, not just one. – Dave Newton Commented May 7, 2013 at 19:27
  • 1 Why not just add it to your first append? .append('blah blah <span>' + test + '</span> blah blah')? – Josh Commented May 7, 2013 at 19:28
  • thank you Mohammad, but when i use append then the menu shows abcde bcde cde de e – user1766952 Commented May 7, 2013 at 19:30
  • You should append it in your .append Method only as Josh mentioned. – Prasen Commented May 7, 2013 at 19:30
Add a ment  | 

5 Answers 5

Reset to default 7

You can try using this to select only the last .down instead of all:

$('.down:last').text(test);

Why don't you do it directly like this:

 function createList(test) {
     alert(test);
     $('#nav')
         .append('<li class="top"><a href="nogo2" id="products" class="top_link"><span class="down">' + test + '</span></a></li>');
 }

The selector $('.down') select every elements with the class down

If you want to select the last created .down use this :

$('.down:last').text(test);
$('.down').each(function(){
    $(this).text(test);
});

i assume that you're calling createList() multiple times for each menu item, but this function creates a group of li's with the same class called "down". Then, you are modifying the class (i.e. all li's that have the class "down"). What you want is to assign a unique id to each li.

here is the fiddle solution:
http://jsfiddle/acturbo/vZAee/2/

this should work:

function createList(test){
      //alert(test);
    var id = "product-" + test;
    console.log(test)

        $('#nav')
        .append('<li class="top"><a href="nogo2" id="products" class="top_link"><span id="'+ id +'"></span></a></li>');
        $("#"+id).text(test);
    }


$().ready(function() {
    createList( "a");    
    createList( "b");   
    createList( "c");   
});
发布评论

评论列表(0)

  1. 暂无评论