javascript通过url传递变量
好吧,问题可能不正确,但我试一试。
我的脚本:
<a href="javascript:var%20u=location.href;window.open('http://localhost/url='+u);void(o)" onclick="return false">OMG, testing</a>
实际上,没有 javascript url 看起来像:
http://localhost/url=google.com
在这里想要添加这个: &format=txt
所以,正确的 url 是:
http://localhost/url=google.com&format=txt
- 如何添加 &format
Well, question maybe doesn't correct, but I give a shoot.
My script:
<a href="javascript:var%20u=location.href;window.open('http://localhost/url='+u);void(o)" onclick="return false">OMG, testing</a>
In real, without javascript url look like:
http://localhost/url=google.com
In here wanna add this: &format=txt
So, the correct url then would be:
http://localhost/url=google.com&format=txt
- How to add &format to the javascript "script" which showed at the
top?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是你想要的吗:
is this what you want:
只需使用 + 将其添加到链接中,除非我误解了问题。
假设 txt 是一个变量,否则将其全部放在引号中。
Just add it to the link using +, unless I misunderstood the question.
Assumes txt is a variable, otherwise put it all in the quotes.
这样就可以了,你必须像对本地主机所做的那样
This will do it ,, you have to do same as you did for the localhost
就像这样:
您只需将文本添加到您的网址字符串中
like that :
You only have to add the text to the string of your url