gpt4 book ai didi

javascript点击事件onload page href Whatsapp

转载 作者:行者123 更新时间:2023-12-03 04:53:28 26 4
gpt4 key购买 nike

我的页面中有 anchor 标记。我喜欢触发点击事件 onload 。这意味着我想打开此链接“whatsapp://send?text=test&phone=+123456789”转到whatsapp。如果您手动单击该链接,则该链接有效,但在加载页面上无效。与 jquery 的结果相同。有办法做到这一点吗?

这就是我所拥有的:

<body onload="document.getElementById('openwhatsapp').click();">
<a id="openwhatsapp" href="whatsapp://send?text=test&phone=+123456789">whatsapp</a>
</body>

为了澄清这一点,http:// 的链接没有问题,它的工作。也许只是不为 whatsapp:// 工作?

最佳答案

首先,不要使用内联JS。这是不对的。

现在来解决问题。你为什么不尝试一下类似的事情

document.body.onload = function(){
window.location.href = "whatsapp://send?text=test&phone=+123456789";
}

如果您仍然想坚持使用内联 JS,我建议您在代码中添加 javascript: 前缀,因为某些浏览器会忽略内联 JS。

所以现在你的代码将变成

<body onload="javascript:document.getElementById('openwhatsapp').click();">
<a id="openwhatsapp" href="whatsapp://send?text=test&phone=+123456789">whatsapp</a>
</body>

关于javascript点击事件onload page href Whatsapp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42548573/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com