JavaScript 优雅降级
你好,
这看起来好吗:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的你是对的。如果浏览器不支持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.
假设非 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 thetarget="_blank"
.