3

Webページのhrefを変更するjQuery関数があります。#containerこのスクリプトをdiv内でのみ実行するにはどうすればよいですか?

$('a[href*="example.com"]').each(function(){
 var index = this.href.indexOf(".com/");
 this.href = this.href.slice(0, index+5)
})

私はこれを試しました、

$('#container').$('a[href*="example.com"]').each(function(){
 var index = this.href.indexOf(".com/");
 this.href = this.href.slice(0, index+5)
})

しかし、うまくいきません。上記のコードの何が問題になっていますか?

4

1 に答える 1