右鍵單擊我開發使用AJAX來加載內容的網站,但我還提供語義鏈接到實際的AJAX頁面與JS的瀏覽器禁用:攔截網址上使用jQuery
<a href="/products/car.html">Show Cars</a>
$("a").click(function(){
$("#main").load('/products/car.html');
return false;
});
如果用戶右鍵單擊/命令點擊並複製URL(www.mysite.com/products/car.html
)與朋友分享,有沒有辦法讓我攔截jQuery中的鏈接並優化函數?
if window.location == 'www.mysite.com/products/car.html' > Do This
?