当前位置: 技术问答>java相关
想嵌套使用javascript,和jsp
来源: 互联网 发布时间:2015-08-20
本文导语: 因该怎样写?我的老是出错。 代码如下: function play() { //alert("ok"); var temp = ; //alert("ok"); window.showModalDialog("pop.html",temp, "dialogHeight: 280px; dialogWidth: 350px;dialogTop: 300px;dialogLeft: 350px;center=yes; status=no;resizable=n...
因该怎样写?我的老是出错。
代码如下:
function play() {
//alert("ok");
var temp = ;
//alert("ok");
window.showModalDialog("pop.html",temp, "dialogHeight: 280px; dialogWidth: 350px;dialogTop: 300px;dialogLeft: 350px;center=yes; status=no;resizable=no");
}
以上是jsp代码
以下是html代码
function init() {
var temp = window.dialogArguments;
document.getElementById("test").value = temp;
}
代码如下:
function play() {
//alert("ok");
var temp = ;
//alert("ok");
window.showModalDialog("pop.html",temp, "dialogHeight: 280px; dialogWidth: 350px;dialogTop: 300px;dialogLeft: 350px;center=yes; status=no;resizable=no");
}
以上是jsp代码
以下是html代码
function init() {
var temp = window.dialogArguments;
document.getElementById("test").value = temp;
}
|
将var temp = ;
改为var temp = "";再看看。
改为var temp = "";再看看。
|
加了引号就是字符串, 不加引号就是变量了