猿问

在JS中类似confirm这样的命令一定要负值给某一变量么

function openWindow(){
       confirm("xxxxxxx");
        if (???){
            document.write("'xxxx'xxx")

如代码所示,目前没有把confirm赋值给一个变量,那么此时if中的判断语句该怎么写?或者说必须要对confirm进行赋值才可以?

Hot_shit
浏览 1616回答 2
2回答

卡迪亚兹

function openWindow(){        if(confirm("xxxxxxx")){             document.write("'xxxx'xxx")  //这里写点确定时候的代码        }else{            //这里写点取消时候的代码        }你直接把confirm写在判断里面就可以了。。

display_none

必须要定义一个变量才行
随时随地看视频慕课网APP
我要回答