如何从 Javascript Url 传递变量
我有一个填写所有信息的表格,它会刷新并转到同一张表格。 需要将 2 个参数传递给 url 。现在我的问题是我不想在 url 中显示 2 个参数我该怎么做? 这是网址。 $myurl = '/root/subroot/banking.php?a1=test&a2=test2'
我想将网址更改为 $myurl = '/root/subroot/banking.php'
这两个参数是否也可以通过而不显示在 URL 中,我的意思是通过任何其他参数。我以这种方式创建参数这有助于创建变量吗
$('#a1').attr('value', 'test');
$('#a2').attr('value', 'test2'). but did not work out
I have a form on filling all the information and it refreshes and go to the same form .
which needs 2 parametrs to be passed to the url . Now my problem is I dont want to show 2 params in the url How can I do that?
This is the url.$myurl = '/root/subroot/banking.php?a1=test&a2=test2'
I want to change the URL to$myurl = '/root/subroot/banking.php'
Can the two parameters also go through without showing in the Url I mean through any other. I created params in this way Would that help in creatin variables
$('#a1').attr('value', 'test');
$('#a2').attr('value', 'test2'). but did not work out
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
编辑
如果您不想看到
a1
和a2
,可以使用(a2 相同)。不过,请注意,此信息在发送到服务器的标记和标头中可见,因此如果您隐藏了不希望用户看到的内容,您可能不想这样做方式。
Change
<form method="get">
to<form method="post">
Edit
If you don't want
a1
anda2
to be seen, you can use<input type="hidden" name="a1" value="test" />
(same for a2). Though, just a note this information is visible in the markup and headers sent to the server so if you're hiding something there that you don't want the user to be able to see, you probably don't want to do it this way.顺便说一句,如果您使用 jQuery,您可能想使用
而不是
On a sidenote, if you're using jQuery, you might wanna use
instead of