5

我是 jscript 的新手。我已在 javascript 中使用此代码返回主页

function gohome()
{
window.location="../index.html"
}

我在这段代码中调用该函数

'<a accesskey="h" id="home" href="javascript:gohome();">Home<\/a>' +

单击页面时将有一个链接,它将调用 gohome() 函数。但相同的链接出现在索引页面上。单击时显示页面未找到。

如何使这个链接隐藏在 index.html 页面中?

谁能帮我??

4

2 回答 2

8

添加.href:

function gohome()
{
window.location.href="../index.html"
}
于 2012-10-31T13:13:31.413 回答
5

我不认为你需要一个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';
}

不在函数中,而只是在源代码或头部中的链接之后的某个时间调用。

于 2012-10-31T13:18:15.877 回答