我有两个HTML文件:index.html
和Page2.html
我在index.html
页面中有一个名为WWW_onclick()
的按钮
如下所示,此函数打开Page2.html
并写入" hello"。
问题是这个函数消灭了原来的Page2.html
,只写了#34;你好"。
有没有办法保留Page2.html
的内容并在其中添加其他文字,图片或内容?
function WWW_onclick()
{
document.location.href = "Page2.html";
document.write("hello");
}
答案 0 :(得分:0)
它会清除你的HTML。
您应该使用innerHTML
示例:
document.getElementById("your-id").innerHTML = "hello";