jQueryでnotの複数指定
- 投稿日 : 2007-07-26, 03:11
- 最終更新日時 : 2010-12-21 17:47:40(履歴)
- タグ(jQuery)
- カテゴリ(Javascript)
- 記し人(luvsic)[PDF]
- 閲覧数(2700)
忘れないうちに。
ううーん、こんなのでいいのだろうか
/*** another location use _target ***/
$(document).ready( function () {
$('a[@href^="http"]').not('[@href^="https://luvsic.net/"]').not('[@href^="http://imgred.com/"]').click(function(){
window.open(this.href, '');
return false;
});
});
No comments yet