JavaScript 优雅降级

发布于 2024-11-08 03:53:49 字数 323 浏览 2 评论 0原文

你好,

这看起来好吗:

<a href="directlinktopurchasepage" target="_blank" onclick="return loadBuyPopup()">Buy Now</a>

function loadBuyPopup() {
 //do something
 return false;
}

理想情况下,我希望加载弹出窗口,但万一 JS 失败(即它可能加载缓慢并且用户很匆忙),那么它仍然应该允许用户使用丑陋的页面进行购买。

这适用于所有浏览器还是我错过了一些东西?

HEllo,

Does this look ok:

<a href="directlinktopurchasepage" target="_blank" onclick="return loadBuyPopup()">Buy Now</a>

function loadBuyPopup() {
 //do something
 return false;
}

Ideally I want the popup to load, but just incase the JS fails (i.e. it may load slowly and the user is in a hurry), then it should still allow the user to purchase using an ugly page.

Will this work in all browsers or am I missing something?

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

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

发布评论

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

评论(2

寂寞花火° 2024-11-15 03:53:49

是的你是对的。如果浏览器不支持JS,则将使用普通链接(也是href)作为链接。否则将调用 onclick JS 函数。

Yes you are right. If the browser does not support JS, then the normal link (also the href) is going to be used for the link. Otherwise the onclick JS function will be called.

风情万种。 2024-11-15 03:53:49

假设非 js 页面在 directlinktopurchasepage 上可用,那么这将起作用。由于 target="_blank",新页面将在新选项卡\窗口中打开。

Assuming that the non-js page is available at directlinktopurchasepage then this will work. The new page will open in a new tab\window due to the target="_blank".

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