3

我需要获取 an 的内容<h3></h3>,然后将内容小写并删除空格(用 - 或 _ 替换它们),然后将它们注入<h3>.

所以,例如...

<li class="widget-first-list"><h3>About This Stuff</h3></li>
<li class="widget-first-list"><h3 id="about-this-stuff">About This Stuff</h3>

对于页面上的大量 h3,这应该存在,因此它需要在某处包含“$this”。

希望这是有道理的——我对 jQuery 没问题,但这给我带来了一些问题。

4

2 回答 2

8

由于您指定了 jQuery,因此您可以:

$("h3").each(function() {
    var me = $(this);
    me.attr("id",me.text().toLowerCase().replace(/[^a-z0-9-]/g,'-').replace(/--+/g,'-'));
});

这会将所有非字母数字字符替换为-,然后去除多个连续-字符。

在普通的 JS 中(效率更高):

(function() {
    var tags = document.getElementsByTagName("h3"), l = tags.length, i;
    for( i=0; i<l; i++) {
        tags[i].id = tags[i].firstChild.nodeValue.toLowerCase().replace(/[^a-z0-9-]/g,'-').replace(/--+/g,'-');
    }
})();

更好的是,检查重复项:

(function() {
    var tags = document.getElementsByTagName("h3"), l = tags.length, i, newid, n;
    for( i=0; i<l; i++) {
        newid = tags[i].firstChild.nodeValue.toLowerCase().replace(/[^a-z0-9-]/g,'-').replace(/--+/g,'-');
        if( document.getElementById(newid)) {
            n = 1;
            do {n++;}
            while(document.getElementById(newid+'-'+n));
            newid += '-'+n;
        }
        tags[i].id = newid;
    }
})();
于 2012-07-23T13:27:57.337 回答
1

一个办法:

$("h3").each(function() {

    var content = $(this).html().replace(/ /g,'_').toLowerCase();
    $(this).attr("id",content);

});
于 2012-07-23T13:30:41.587 回答