我是jscript的新手。 我在javascript中使用此代码返回主页
function gohome()
{
window.location="../index.html"
}
我在这段代码中调用该函数
'<a accesskey="h" id="home" href="javascript:gohome();">Home<\/a>' +
单击页面时会有链接,它会调用gohome()函数。 但是同样的链接出现在索引页面上。点击它时显示找不到页面。
如何在index.html页面中隐藏此链接?
任何人都可以帮助我吗?
答案 0 :(得分:7)
添加.href:
function gohome()
{
window.location.href="../index.html"
}
答案 1 :(得分:4)
我不认为你需要一个javascript函数才能回家,你可以这样做:
<a accesskey="h" id="home" href="../index.html">Home<\/a>
如果你不希望它显示在主页上虽然你可以做这样的事情,假设主页是example.com/index.html
if(window.location.pathname=="/index.html"){
document.getElementById('home').style.display = 'none';
}
不在函数中,而是在源代码或头部中的链接之后的某个时间调用。