这两句代码设置的是当前网页的标题,您知道怎么设置新建网页的标题吗?
追答不是很明白,不知道楼主的意思是不是通过当前窗口打开一个窗口,
然后将当前窗口文本框的值当作新打开窗口的标题?
是的!呵呵·····
追答比如说两个页面,a.html,b.htm
在a中打开b:
在a页面中:
var txt = document.getElmentById("文本框ID").value;
document.getElementById("按钮ID").onclick = function(){
var win = window.open('b.htm');
}
在b页面中:
document.title = window.opener.txt;