如何在 Actionscript 2.0 中通过 getURL 函数使用问号?

发布于 2025-01-07 18:50:44 字数 222 浏览 0 评论 0原文

Actionsctipt 代码:

on(press)
{
     getURL(escape("address.html?0"));
}

这在 Internet Explorer 中工作得很好,但在 Chrome 中,问号显然变成了“%3F”。

有什么想法可以阻止这种情况发生并仍然保持与 IE 和其他流行浏览器兼容吗?

谢谢。

Actionsctipt code:

on(press)
{
     getURL(escape("address.html?0"));
}

This works absolutely fine in Internet Explorer but in Chrome in the question mark is obviously made into "%3F".

Any ideas how I can stop this from happening and still keep it compatible with IE and other popular browsers?

Thanks.

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

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

发布评论

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

评论(2

留蓝 2025-01-14 18:50:44

正如 mgraph 在他的评论中所说,你不应该转义整个 URL,只需这样做:

getURL("address.html?0");

如果你的真实 URL(猜测“address.html?0”是一个简化的示例)有需要转义的部分,那么你会想要仅转义这些部分,以避免出现 ?和类似的逃脱。例如这样:

var userName:String = "Lars Blåsjö";
getURL("page.html?name=" + escape(userName)); 

As mgraph says in his comment, you shouldn't escape the entire URL, simply do:

getURL("address.html?0");

If your real URL (guessing "address.html?0" is a simplified example) has parts that needs to be escaped, then you would want to escape those parts only, to avoid having the ? and similar being escaped. So for example like this:

var userName:String = "Lars Blåsjö";
getURL("page.html?name=" + escape(userName)); 
剩余の解释 2025-01-14 18:50:44

You could try the Querystring class provided by Adobe I used in this answer.

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