2011-03-16 60 views

回答

3

在當前頁面的加載:

$(function() { 
    if (location.href.match(/\_edit/)) { 
     $('div#editor').show(); 
    } 
    else { 
     $('div#editor').hide(); 
    } 
}); 

通過一個單擊處理程序:

只需使用的href的字符串匹配方法來選擇是否顯示或隱藏股利。

$('a').click(function() { 
    var href = $(this).attr('href'); 
    if (href.match(/\/_edit/)) { 
     $('div#editor').show(); 
    } 
    else { 
     $('div#editor').hide(); 
    } 
}); 
+0

對不起,我的意思是在頁面加載,當它加載。 – Jake 2011-03-16 03:05:08

+0

@Jake - 沒有什麼問題只是匹配'location.href'而不是文檔就緒處理程序中單擊錨點的href。 – tvanfosson 2011-03-16 03:11:29

+0

schwee感謝堆!生病給它一個鏡頭 – Jake 2011-03-16 03:13:25

相關問題