开发者

jQuery get .text() but not the text in span

开发者 https://www.devze.com 2023-03-03 16:48 出处:网络
This is my jQuery part that makes my menu for my pages. function fetchmenus() { $.getJSON(\'sys/classes/fetch.php?proccess=1\', function(status) {

This is my jQuery part that makes my menu for my pages.

function fetchmenus() {
    $.getJSON('sys/classes/fetch.php?proccess=1', function(status) {
        // get line status
        $.each(status, function(i, item) {
            if (item.id == "1") {
                active = "class='active'";
                lastpageid = item.href;
            }
            else {
                active = "class='nonactive'";
            }
            $('<li id="' + item.href + '" ' + active + '><a href="#' + item.href + '">' + item.menuTitle + '<span class="menuspan" id="' + item.href + '"></span></a></li>').appendTo('#menuarea ul#mainmenu');

        });
    });
}

What I want to do is get the item.menuTitle in the <a but before the <span>.

Currently I do it on this way:

$('ul#mainmenu li').live('click', function(event) {
    //alert(this.id);
    $("li#" + lastpageid).removeClass();
    fetchpage(this.id);

    $("#largemenutop").html($(this).text());

 开发者_高级运维   $("li#" + this.id).addClass("active");
    lastpageid = this.id;
});;

Is there a better way to do this?


Nice solution Herman, though it can be reduced to something like this:

JS

$('li a').contents().filter(function() {
    return this.nodeType == 3;
}).text();

HTML

<li><a href="#">Apple<span>hi</span> Juice</a></li>

Will return Apple Juice

Fiddle: http://jsfiddle.net/49sHa/1/


Yes, you can select only the text contents of the element, like this:

 var text = '';
 $('a').contents().each(function(){
    if(this.nodeType === 3){
     text += this.wholeText;
    }
 });
 $("#largemenutop").html(text);
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号