在jquery mobile中获取url值?

时间:2011-08-16 08:39:16

标签: jquery url mobile

我正在尝试使用jquery mobile在网址中附加值。

http://localhost/testing/nothing.html#details?id=0&color=blue

当我转到“详细信息”页面时,我想使用jquery mobile获取id = 0和color = blue:

$( '#细节')。住( 'pagecreate',功能(事件) {

});

感谢。

1 个答案:

答案 0 :(得分:6)

请检查this链接

编写如下所示的功能

$.urlParam = function(name){
var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href);
return results[1] || 0;

}

要获取特定值,只需调用该函数并传递参数名称

    $.urlParam('id');