javascript通过url传递变量

发布于 2025-01-08 14:39:20 字数 533 浏览 1 评论 0原文

好吧,问题可能不正确,但我试一试。

我的脚本:

<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 技术交流群。

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

发布评论

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

评论(4

简单气质女生网名 2025-01-15 14:39:20

这是你想要的吗:

<a href="javascript:var%20u=location.href;window.open('http://localhost/url='+u+'&format=txt');void(o)" onclick="return false">OMG, testing</a>

is this what you want:

<a href="javascript:var%20u=location.href;window.open('http://localhost/url='+u+'&format=txt');void(o)" onclick="return false">OMG, testing</a>
疧_╮線 2025-01-15 14:39:20

只需使用 + 将其添加到链接中,除非我误解了问题。

<a href="javascript:var%20u=location.href;window.open('http://localhost/url='+u+'&format='+txt);void(o)" onclick="return false">OMG, testing</a>

假设 txt 是一个变量,否则将其全部放在引号中。

Just add it to the link using +, unless I misunderstood the question.

<a href="javascript:var%20u=location.href;window.open('http://localhost/url='+u+'&format='+txt);void(o)" onclick="return false">OMG, testing</a>

Assumes txt is a variable, otherwise put it all in the quotes.

吃颗糖壮壮胆 2025-01-15 14:39:20

这样就可以了,你必须像对本地主机所做的那样

<a href="javascript:var%20u=location.href;window.open('http://localhost/url='+u+'&format='+txt);void(o)" onclick="return false">OMG, testing</a>

This will do it ,, you have to do same as you did for the localhost

<a href="javascript:var%20u=location.href;window.open('http://localhost/url='+u+'&format='+txt);void(o)" onclick="return false">OMG, testing</a>
输什么也不输骨气 2025-01-15 14:39:20

就像这样:

<a href="javascript:var%20u=location.href;window.open('http://localhost/url='+u + '&format=txt');void(o)" onclick="return false">OMG, testing</a>

您只需将文本添加到您的网址字符串中

like that :

<a href="javascript:var%20u=location.href;window.open('http://localhost/url='+u + '&format=txt');void(o)" onclick="return false">OMG, testing</a>

You only have to add the text to the string of your url

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