我想点击链接,我想自己去主页上的页面
<a onclick="javascript:GoToHomePage()" href="javascript:void(0)">Home page</a>
功能是
function GoToHomePage()
{
window.location = 'default.aspx';
}
但我想要 www.testtest.com 页面的 url 而不是 www.testtest.com/default.aspx
我什至不能给出像 www.testtest.com 这样的绝对路径,因为它是一个门户网站,并且同一页面会出现在几个门户网站中。