PHP前端开发

为什么使用 `` 标签的 `onclick` 属性跳转失效?

百变鹏仔 2天前 #PHP
文章标签 跳转

在 a 标签内使用 onclick 跳转失效的解决方法

在 html 中,使用 a 标签的 onclick 属性可以实现页面跳转。但是,有时可能会遇到无法正常跳转的情况。

问题代码

<script type="text/jscript">function rechargetp(){    $("#rechargeah").attr('href',"https://www.baidu.com/");    }</script><a href="https://www.baidu.com/" id="rechargeah" onclick="rechargetp();" target="_blank">点我跳转</a>

解答

在提供的问题代码中,使用了 jquery 来修改 a 标签的 href 属性。然而,由于代码中的 type 属性为 "text/jscript",而不是正确的 "text/javascript",导致 javascript 代码无法正常解析。

要解决此问题,需要将 type 属性的值更正为 "text/javascript"。修正后的代码如下:

<script type="text/javascript">function rechargeTP(){    $("#rechargeAh").attr('href',"https://www.baidu.com/");    }</script><a href="https://www.baidu.com/" id="rechargeAh" onclick="rechargeTP();" target="_blank">点我跳转</a>

修正后,页面中的 a 标签即可正常跳转。