如何从元素中删除扩展属性“jquery123456”

时间:2012-02-23 12:06:08

标签: javascript expando

我有一个元素"<a id="sample" jquery1234567="0">Testing</a>"

我想从上面的标签中删除最后一个属性(jquery1234567)。 但是属性“jquery1234567”将动态生成。

3 个答案:

答案 0 :(得分:2)

此生成属性的值为$.expando。因此,如果要删除它,只需使用:

$('#sample').removeAttr($.expando);

虽然我不建议删除此属性,因为jQuery使用它来跟踪绑定到DOM元素的事件处理程序。影响此行为的正确方法是使用jQuery取消绑定此元素的事件。

答案 1 :(得分:0)

试试这个

    $.fn.getRegexAttr = function(regex, action) {

    if( !this.length ) return false;

    if( 'remove' == action ){

        var that = this;
        $(this[0].attributes)
            .filter(function(){ return regex.test(this.name); })
            .each(function(){ $(that).removeAttr(this.name); });


    }else if( 'fetch' == action ){

    return $(this[0].attributes)
            .filter(function(){ return regex.test(this.name); })
            .map(function(){ return $.trim(this.name); })
            .get();
    }
}

if( $('#sample').getRegexAttr(/jquery[0-9]/, 'fetch') ) alert( $('#sample').getRegexAttr(/jquery[0-9]/, 'fetch').join(',') );// To get the matched attributes

$('#sample').getRegexAttr(/jquery[0-9]/, 'remove');// To remove the matched attributes

您还可以在http://jsfiddle.net/Nng8n/3/

中进行验证

答案 2 :(得分:-1)

试试这个

  $("#sample").removeAttr('jquery1234567');
                (or)
  var id=1234567;
  $("#sample").removeAttr('jquery'+id);

这对你没用..请用代码添加一些额外的描述......

嗨,朋友,这会帮助你

      lastAttrIndex=($("#sample")[0].attributes.length)-1;
      lastAttr=$("#sample")[0].attributes[lastAttrIndex].name;
      $("#sample").removeAttr(lastAttr);