我想添加一個類根據URL查詢字符串正文中添加類體(或散列如果多數民衆贊成容易)jQuery的查詢字符串從或哈希
如果你去http://www.here.com?myclass我想頁面改變類的機構來:<body class="myclass">
這是我使用的哈希最接近:
$(document).ready(function() {
var url=document.URL.split('#')[1];
if(url == undefined){
url = '';
}
if(url != ''){
$(document.body).addClass('myclass');
}
});
這告訴如何獲取查詢:http://stackoverflow.com/questions/16901981/add-hash-before-location-pathname/16902458#16902458 –