jquery从url中提取文档库名称

时间:2010-11-22 20:04:32

标签: jquery url substring

有没有办法使用jquery从URL中获取文档库名称?这个(How to obtain document library name from the URL)是一个很好的链接,但我需要使用jquery

例如:https://Pros.Canada.ProSource.com/sites/CandidateSource/Campaign23/Forms/EditForms.aspx?ID=333223(等等)

此页面上有两个查找字段(广告系列和广告系列号)。想法是当招聘人员转到此页面时,我希望jquery从网址中获取广告系列和广告系列号,并将其粘贴在广告系列和广告系列编号框中。所以招聘人员不必手动选择这些值。

关键字:window.location.split

1 个答案:

答案 0 :(得分:0)

页面的任何示例?

如果没有样本,我建议做类似的事情:

$('a').each(function(){
     alert($(this).attr('href'));
});

确实需要查看数据的结构,我确定在哪里使用它。

修改

你可能在谈论获取请求参数? http://jquery-howto.blogspot.com/2009/09/get-url-parameters-values-with-jquery.html

有一个关于拆分window.location的好教程,我不确定抓住它们它们已经发布了。

这里还有一个关于阅读$ _POST的问题 how to get GET and POST variables with JQuery?