document.open问题
我网页上有一个文本框和一个按钮,在文本框中输入内容,点击按钮,在新窗口中显示文本框中的内容,以下代码为什么不行哪?
<script language= "javascript ">
function cj()
{
var story = document.simple.stuff.value;
libsWin = window.open( " ", "simple ", "width=100,height=100 ");
libsWin.document.write(story);
libsWin.document.close();
}
</script>
<form name= "simple ">
<input type= "text " name= "stuff ">
<input type= "button " value= "Okay " onclick= "cj(); ">
</form>
------解决方案--------------------我在本地试了一下没有问题啊,你能描述下是什么错误吗?