各位老大,我想请教个问题,当我点击“继续”链接时,如果ll.href不满足条件,那么跳出alert("没有选编号!"
;,如果满足条件,先跳出return confirm('是否继续!');窗口,点“确定”就执行window.open("putin.asp"
;,点“取消”就什么也不干,现在我下面这个好像写错了,如果点“确定”就显示true,点“取消”就显示false,不知该怎么改?
<script>
function putin(){
if(ll.href!=0){
alert("没有选编号!"
;
}
else{
return confirm('是否继续!');
window.open("putin.asp"
;
}
}
</script>
<a href="javascript
utin()">继续</a>