8

我需要完成一些非常简单的事情,而到目前为止我所做的只是完成了一半。

我有一个链接<a href="#" class="favorites">Favorite</a>,你可以看到它没有标题属性。

加载页面时,脚本会添加此标题属性:

<a href="#" class="favorites" title="Add to Favorites">Favorites</a>

单击时,将切换选中的类,然后应更改标题属性,因此最终结果将如下所示:

<a href="#" class="favorites checked" title="Item added to Favorites">Favorites</a>

我有这段代码,但虽然它改变了新的标题属性,但当再次单击时,标题属性没有交换,这是我需要的:

$('.favorites').attr('title','Add to Favorites').click(function(){
  $(this).toggleClass('checked').attr('title','Added to Favorites');
});

有什么想法可以在点击时“切换”属性吗?

我创建了这个DEMO来展示这个问题。

提前致谢。

4

4 回答 4

7

尝试这个

$('.favorites').attr('title', 'Add to Favorites').click(function() {
    $(this).toggleClass('checked');
    var title = 'Add to Favorites' ;

    if( $(this).hasClass('checked')){
       title = 'Added to Favorites';
    }
    $(this).attr('title', title);
});​

检查小提琴

于 2012-10-24T17:49:13.850 回答
1

我知道我迟到了,但我写了一个小插件来处理属性的切换

(function($) {
    var methods = {
        init: function(options){
            var defaults = {
                propName: '',
                toggleTo: '',
                toggleFrom: ''
            }

            return this.each(function() {
                var $this = $(this);
                var settings = $.extend({}, defaults, options);

                if($this.data('toggled') == 'false' || !$this.data('toggled')){
                    $this.data('toggled', 'true');
                    $this.prop(settings.propName, settings.toggleTo);
                }else{
                    $this.data('toggled', 'false');
                    $this.prop(settings.propName, settings.toggleFrom);                                              
                }
           });
        }
    } 
    $.fn.toggleProperty = function( method ) {
        if (methods[method]) {
            return methods[method].apply( this, Array.prototype.slice.call( arguments, 1 ));
        } else if (typeof method === 'object' || !method) {
            return methods.init.apply(this, arguments);
        } else {
            $.error( 'Method ' +  method + ' does not exist on jQuery.toggleProperty' );
        }           
    };
})(jQuery);

只需将其放在事件调用中,就可以了。

$('element').click(function(){
    $(this).toggleProperty({
        propName: 'title',
        toggleTo: 'Added From Favorites',
        toggleFrom: $(this).prop('title') 
    });
});

此外,该toggleFrom属性允许您传入初始标题,或者您想要来回切换的新标题。

于 2012-10-24T18:23:12.793 回答
1

您可以在 is/else 内执行或仅使用三元运算符

//Toggle attribute
$('.favorites').attr('title', 'Add to Favorites').click(function() {
     $(this)
        .toggleClass('checked')
        .attr('title', $(this).hasClass('checked') ? "Item added to Favorites":'Added to Favorites');
});​

http://jsfiddle.net/WwqYC/

最终与

$('.favorites').attr('title', 'Add to Favorites').click(function() {        
    $(this).toggleClass('checked');        
    if($(this).hasClass('checked')){
        $(this).attr('title',"Item added to Favorites");
    }else{
        $(this).attr('title','Added to Favorites');
    } 
});​
于 2012-10-24T17:49:12.727 回答
1

使用data-属性来存储备用标题,然后在title每次单击时将其与属性进行切换。jQuery 将使用该方法自动检索data-属性中的任何内容。.data()这具有非常灵活的优点——任何.favorites链接都可以使用这个事件处理程序交换任何标题文本。

<a href="#" class="favorites" data-title2="Added to Favorites" title="Add to Favorites">Favorites</a>​

JS:

$('.favorites').click(function() {
    var $this = $(this),
        t1 = $this.attr('title'),
        t2 = $this.data('title2');
 $this.toggleClass('checked').attr('title',t2).data('title2',t1);
});​

http://jsfiddle.net/mblase75/Na2pE/

或者,如果你想让它更灵活,添加一些代码来检测data-title2first 的存在:

$('.favorites').click(function() {
    var $this = $(this),
        t1 = $this.attr('title'),
        t2 = $this.data('title2');
    $this.toggleClass('checked');
    if (t2) {
        $this.attr('title', t2).data('title2', t1);
    };
});​
于 2012-10-24T17:49:37.307 回答