0
我有問題:沒有用於asyncronous換頁和加載使用jQuery(阿賈克斯)的腳本:如何使用Ajax,Javascript添加頁碼?
$('.page_button').live('click',function() {
$('#ajaxBusy').show();
$('.selected_page_button').attr('class','page_button');
$(this).attr('class','selected_page_button');
$.post("http://"+document.location.host+"/index.php/welcome/update_records_set/"+this.id,
function(data)
{
if (data != "")
{
$(".records_content:last").empty();
$(".records_content").html(data);
}
$('#ajaxBusy').hide();
});
});
此代碼的工作,但我還需要添加「#page」爲URL無需刷新。還有,我用笨的開發,以及一些控制這個功能加載頁面:
public function language_testing($language_code) {
//some actions
}
但我怎麼能提取以加載第五頁從「http://some_site/controller/en#5
」頁碼?有沒有標準的方法呢?
我可以設置哈希值嗎?或者我只能得到它? – user1538002 2012-07-20 11:58:46
是的,你可以,看看上面編輯 – 2012-07-20 12:00:16
是的,謝謝。 – user1538002 2012-07-20 12:10:06