私はこのスクリプトを手に入れました:
<script>
$(document).ready(function () {
$('a[@href^= ""] img').parent().click(function () {
var linkz = $(this).attr("href");
if(linkz.toLowerCase().indexOf("http: //www.website.com") >= 0) {
window.open($(this).attr("href"));
return false;
} else {
window.open("http://www.website.com/p/img.html?img=" + $(this).attr("href "));
return false;
}
});
});
</script>
新しいリンクで画像の URL を渡す新しいページですべての画像を開くには。しかし、私は得ています
TypeError: $ is not a function.
$(document) の代わりに jQuery(document) を追加しようとしましたが、
$('a[@href^=""] img')
TypeError: $ は関数ではありません
ここ。