ページネーションのコードを書こうとしています。機能の 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>
ますか?