我有.js和.vbs。
的.js
IE4 = document.all;
function newAlert(title,mess,icon) {
(IE4) ? makeMsgBox(title,mess,icon,0,0,0) : alert(mess);
}
function msgBox(title,mess,icon,buts,defbut) {
retVal = (IE4) ? makeMsgBox(title,mess,icon,buts,defbut,0) : null;
return retVal;
}
.VBS
Function makeMsgBox(tit,mess,icons,buts,defs,mods)
butVal = buts + (icons*16) + (defs*256) + (mods*4096)
makeMsgBox = MsgBox(mess,butVal,tit)
End Function
Function makeInputBox(tit,pr,def)
makeInputBox = InputBox(pr,tit,def)
End Function
我在IE11中需要替代方法。我知道IE11不再支持.vbs和document.all了。但我需要相同的功能。有什么选择吗?
答案 0 :(得分:0)
您需要什么“功能”?
在IE11中,在Internet区域中,您最好的选择是来自JavaScript的alert()
,或者您可以创建看起来像旧VBScript警告框的HTML弹出窗口。