通过 jQuery 访问参数

发布于 2024-12-10 17:50:12 字数 355 浏览 3 评论 0原文

我正在通过 jQuery 的 ajaxsubmit 插件提交一个表单,它会在查询字符串中发出一个返回我的页面的 url,其中包含很少的参数。问题是我无法在 php 中或在 ajax 提交的成功事件中获取这些参数。有什么办法吗?获取那些参数? 你可以在这里看到它 http://videoproduct-pro.com/video/ 打开firebug的网络面板这是第四个请求 uploads.gdata.youtube.com 中的一个。我提交的表单有一个带有外部 URL 的操作。

任何人都知道这里的问题是什么?

问候 希曼舒·夏尔马

I am submitting a form via ajaxsubmit plugin of jQuery,Which issues a url back to my page with few parameters in the query string.The problem is that i cant get those parameters in php or on success event of ajax submit.is there any way to get those parameters?
You can see it here http://videoproduction-pro.com/video/ open the firebug's net panel and it is in the 4th request the uploads.gdata.youtube.com one.The form im submitting has an action with external URL in it.

Any body knows what the issue here is?.

Regards
Himanshu Sharma

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

﹂绝世的画 2024-12-17 17:50:12

如果您想要它们在客户端,那么您可以使用 gup。

//for http://www.example.com?frank=value
function gup( name )
{
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return "";
  else
    return results[1];
}

// = 'value'
var frank_param = gup( 'frank' );

如果您想要它们在服务器端,请使用 获取全局

$_GET['frank']

If you want them client side then you can use gup.

//for http://www.example.com?frank=value
function gup( name )
{
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return "";
  else
    return results[1];
}

// = 'value'
var frank_param = gup( 'frank' );

If you want them server side then use the get global

$_GET['frank']
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文