我此腳本:
<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.
我試圖添加的,而不是$(文件)的jQuery(文檔),但後來我得到了
$('a[@href^=""] img')
TypeError: $ is not a function
這裏。
「$不是一個函數」通常,你已經忘了包括jQuery庫 – 2013-03-28 01:59:57
一個明確的信號,你怎麼包括jQuery的進頁? – 2013-03-28 02:00:07