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)
})
しかし、うまくいきません。上記のコードの何が問題になっていますか?