我是 jscript 的新手。我已在 javascript 中使用此代码返回主页
function gohome()
{
window.location="../index.html"
}
我在这段代码中调用该函数
'<a accesskey="h" id="home" href="javascript:gohome();">Home<\/a>' +
单击页面时将有一个链接,它将调用 gohome() 函数。但相同的链接出现在索引页面上。单击时显示页面未找到。
如何使这个链接隐藏在 index.html 页面中?
谁能帮我??