12

ページネーションのコードを書こうとしています。機能の 1 つは、現在のリンクを無効にして、テキストのように見え、クリックできないようにすることです。HTML ページでは、次のように href 属性を省略することで実現できます。

<a>Link</a>

JavaScript ではそれができませんでした。

AvdonPagination.prototype.manageLinks = function(link){
    if(link){
        this.current.href = '#';
        this.current = link;
    }else{
        this.current = this.links[0];
    }
    this.current.href = null;
}

なぜなら

this.current.href = null;

生産する

<a href="null">Link</a>

this.current.href=""また、 、およびを試しthis.current.disabled=trueましたが、どちらも機能しません。どうすれば達成でき<a>Link</a>ますか?

4

2 に答える 2

33

これを試してくださいremoveAttribute("href")

于 2013-06-30T05:13:53.110 に答える