为什么一段js程序,在dreamweaver里能运行,但是放到myeclipse的jsp里就运行不了了。代码如下:
JSfunctionshanchu(flag,id){alert(flag);alert(id);if(flag=="dele"){if(confirm("确定删除账单信...
JS
function shanchu(flag,id){
alert(flag);
alert(id);
if(flag == "dele"){
if(confirm("确定删除账单信息?") != true){
return;
}
window.location="shanchu.java?id="+id+"&flag="+flag;
}
}
HTML
<input type="button" name="shanchu" value="删除" class="input-button" onclick=shanchu("dele","5"); />
当jsp运行完后生成的html代码如下:
function shanchu(flag,id){
alert(flag);
alert(id);
if(flag == "dele"){
if(confirm("确定删除账单信息?") != true){
return;
}
window.location="shanchu.java?id="+id+"&flag="+flag;
}
}
<input type="button" name="shanchu" value="删除" class="input-button" onclick='shanchu("dele","1")'; /> 展开
function shanchu(flag,id){
alert(flag);
alert(id);
if(flag == "dele"){
if(confirm("确定删除账单信息?") != true){
return;
}
window.location="shanchu.java?id="+id+"&flag="+flag;
}
}
HTML
<input type="button" name="shanchu" value="删除" class="input-button" onclick=shanchu("dele","5"); />
当jsp运行完后生成的html代码如下:
function shanchu(flag,id){
alert(flag);
alert(id);
if(flag == "dele"){
if(confirm("确定删除账单信息?") != true){
return;
}
window.location="shanchu.java?id="+id+"&flag="+flag;
}
}
<input type="button" name="shanchu" value="删除" class="input-button" onclick='shanchu("dele","1")'; /> 展开
1个回答
展开全部
估计是你的编码有问题,你这样做下试一试:
直接把Dreamweaver里面代码赋值,然后再在myeclipse里面新建一个文件,粘贴进去试一试。
另外,你的js代码有点累赘,给你优化下:
function shanchu(flag,id){
alert(flag);
alert(id);
if(flag == "dele"){
if(confirm("确定删除账单信息?") ){
window.location="shanchu.java?id="+id+"&flag="+flag;
}
}
}
直接把Dreamweaver里面代码赋值,然后再在myeclipse里面新建一个文件,粘贴进去试一试。
另外,你的js代码有点累赘,给你优化下:
function shanchu(flag,id){
alert(flag);
alert(id);
if(flag == "dele"){
if(confirm("确定删除账单信息?") ){
window.location="shanchu.java?id="+id+"&flag="+flag;
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询