我如何将url id参数传递给mvc2中的javascript
任何人都知道如何将 id 参数传递给 jquery。例如我有一个网址: http://localhost:52271/News/Index/1
我想要的是 id 参数,它是1、在上面的网址中。我需要将该 id 传递给脚本,例如 var = url
其中 url 应该是参数,在本例中为 1,
任何帮助将不胜感激
Anyone knows how to pass an id parameter to jquery. For instance I have a url:
http://localhost:52271/News/Index/1
What I want is id parameter which is 1, in the above url. and I need to pass that id to the script like
var = url
where url should be the parameter which in this case 1,
Any help will be highly appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从你的问题来看,我假设你正在尝试将当前 url 中的 id 分配给 Javascript 变量。您可以从
window.location.href
属性中解析 id,如下所示:From your question, I assume you're trying to assign the id from the current url to a Javascript variable. You can parse the id out of the
window.location.href
property like this:以下是有关 Javascript 中 URI 操作的一些信息:链接
也就是说,请尝试以下操作:
编辑:
验证您是否确实拥有该 URL:
Here is some information on URI manipulation in Javascript: link
That said, try this:
EDIT:
Verify that you really have the URL: