"在 html 页面中不起作用-6ren"> "在 html 页面中不起作用-我的 html 页面中有此代码: HOME PLANNING ... ...-6ren">
gpt4 book ai didi

javascript - 超链接标签 ""在 html 页面中不起作用

转载 作者:行者123 更新时间:2023-11-28 16:07:55 25 4
gpt4 key购买 nike

我的 html 页面中有此代码:

    <body>
<div align="center">
<a href="../index.html">
<img border="0" src="banner1.jpg" width="800" height="120" alt="Ecommerce Knowledge Base"> </a>

<div style="background-image:url(Heading%20Background.jpg); width:800px">
<a href="../index.html" style="position:relative; left:-130px">HOME</a>
<a href="" style="position:relative; left:-65px" id="planning">PLANNING</a>
</div>
...
...
...
</body>

超链接HOME链接到index.html页面,该页面位于包含此html页面的文件夹的根文件夹中。但点击这个超链接后什么也没有发生。即使链接到同一页面的横幅也不起作用。

奇怪的是,这两个超链接之前都工作正常,直到我在页面中做了一些“jquery”代码更改。但我不确定这一变化如何影响这一点。请帮忙。这些是代码更改:

    <script> 
$(document).ready(function(){
$("#planning").click(function(e){
$("#planning_panel").slideToggle("slow");
e.preventDefault()
});
});
</script>

至:

    <script> 
$(document).ready(function() {
$(document).on('click',function(e) {
e.preventDefault();
var $panel = $("#planning_panel");
if (e.target.id === 'planning') {
$panel.slideToggle('slow');
} else {
$panel.slideUp('slow');
}

});
});
</script>

两个脚本都工作正常,唯一的问题是一旦进行更改,超链接就停止工作。

最佳答案

关于javascript - 超链接标签 "<a>"在 html 页面中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14109730/

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