当前位置: 代码迷 >> Java Web开发 >> jsp中document对象的write()方法有关问题
  详细解决方案

jsp中document对象的write()方法有关问题

热度:119   发布时间:2016-04-17 00:09:03.0
jsp中document对象的write()方法问题
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script language="javascript">
var x=window.prompt("请输入姓名;"",");
document.write("你好!"+x);
</script>
</head>
<body>
</body>
</html>
用ie运行没有出现脚本提示是怎么回事

------解决方案--------------------
引用
var x=window.prompt("请输入姓名;"",");
  相关解决方案