0

我正在创建一个使用 html 属性以交互方式显示链接信息的系统,并使用 jQuery 来移动一些 HTML。我被困在试图将标题属性附加到 div 中。我从来没有用属性做到这一点,并且正在撞墙。

这很难解释,但是当你看到 JS 时,你就会明白我在追求什么。 http://jsfiddle.net/KvAwa/

感谢您提前提供任何帮助

的HTML

<div id="navtool">
    <ul id="menu">
        <li id="1">
            <a href="location1.html" title="this is the decription1">This is the link1</a>
        </li>
        <li id="2">
            <a href="location2.html" title="this is the decription2">This is the link2</a>
        </li>
        <li id="3">
            <a href="location3.html" title="this is the decription3">This is the link3</a>
        </li>
    </ul>
</div>
<a href="#" class="prev nav">prev</a>
<a href="#" class="next nav">next</a>
<div id="linkdesciption"></div>
<a href="#" id="execute">Execute link</a>​

JS

// Cycles Menu   
$('#menu > li:first').addClass('active');
$('.next').click(function(){
    $('.active').next().addClass('active').prev().removeClass('active');        
    $('#menu > li:last').after($('#menu > li:first'));
});
$('.prev').click(function(){
    $('.active').prev().addClass('active').next().removeClass('active');
    $('#menu > li:first').before($('#menu > li:last'));
});

// Collects the link  
var executeLink = $('#menu > li.active > a').attr("href");
$('#execute').attr("href", executeLink); 
$('#execute').click(function(){
   alert(executeLink);
});

// Collects title and inject into description
$('.nav').click(function(){
    var description = $('.active > a').attr('title'); 
    $(description).appendTo('#linkdesciption');
}); 
4

2 回答 2

0

如果我理解正确,试试这个小提琴:http: //jsfiddle.net/arvind07/KvAwa/1/

于 2012-06-18T05:57:35.327 回答
0

认为该代码的相关部分是:

$('.nav').click(function(){
    var description = $('.active > a').attr('title'); 
    $(description).appendTo('#linkdesciption');
}); 

你想扭转局面:

$('.nav').click(function(){
    var description = $('.active > a').attr('title'); 
    $('#linkdesciption').append(description);
}); 

更新的小提琴

或者,如果您想用新的链接标题替换以前的链接标题,请使用htmlortext而不是append

$('.nav').click(function(){
    var description = $('.active > a').attr('title'); 
    $('#linkdesciption').text(description);
}); 

更新的小提琴

于 2012-06-18T05:58:06.777 回答