我写文档有问题:
NewWindow.document.write("Hi, this is test");
NewWindow = window.open("pages/Example.html","_self");
页面空白。如果我使用
NewWindow.document.write("Hi, this is test");
NewWindow = window.open("pages/Example.html","displayWindow");
它有效,但我想重写当前页面的内容。
var NewWindow = window.open("pages/Example.html","_self");
NewWindow.document.write("Hi, this is test");
我想创建对象窗口,写信给他然后显示。
答案 0 :(得分:0)
你几乎就在那里,你的问题是你执行这些功能的顺序。 如果页面不存在,您如何写入页面?
if(id == android.R.id.home){
getSupportFragmentManager().beginTransaction().replace(R.id.main_container, new AmbulanceMap()).commit();
getSupportActionBar().setTitle("Book A Ride");
getSupportActionBar().setDisplayHomeAsUpEnabled(false);
}