开发者

How to extract values using javascript?

开发者 https://www.devze.com 2023-01-12 11:42 出处:网络
I have one string var str = \'\'; str += \'category=\'+jv(\'category\')+\'&\'; str += \'refresh_rate=\'+jv(\'refr开发者_如何学PythoneshRate\')+\'&\';

I have one string

var str = '';
str += 'category='+jv('category')+'&';

str += 'refresh_rate='+jv('refr开发者_如何学PythoneshRate')+'&';

str += 'submit=Y';

now I want to take values from jv('category') and jv('refreshRate') in separate string in javascript (I want to extract values after "=" and before "&").

Thanks.


I've used this: http://blog.stevenlevithan.com/archives/parseuri URI Parser in the past and find it simple to use and it doesn't rely on any other libraries. Its also pretty lightweight.

The author has a demo page but doesn't really explain how to use it.. Its really simple, you just do something like this:

var url = "http://my-site.com:8081/index.html?query=go&page=2";
var parsed = parseUri(url);

From there you can get things like the host/protocol/port/etc.. When dealing with the querystring you do

var page = parsed.queryKey.page;
alert(page); //alerts 2

Click the parse button on the demo page to see all properties of the parsed URI object that you can access..


You can use http://github.com/allmarkedup/jQuery-URL-Parser or any other URL parser for this sort of string.

0

精彩评论

暂无评论...
验证码 换一张
取 消