首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

怎把javascript里alert弹出框的“确定”按钮换成英文?该如何处理

2012-02-01 
怎把javascript里alert弹出框的“确定”按钮换成英文?怎把javascript里alert弹出框的“确定”按钮换成英文?简

怎把javascript里alert弹出框的“确定”按钮换成英文?
怎把javascript里alert弹出框的“确定”按钮换成英文?简明一点的

[解决办法]
自己写一张网页为弹出窗口,你想怎么定义就怎么定义,然后调用window.showModalDialog 方法

JScript code
<SCRIPT>function fnRandom(iModifier){return parseInt(Math.random()*iModifier);}function fnSetValues(){var iHeight=oForm.oHeight.options[oForm.oHeight.selectedIndex].text;if(iHeight.indexOf("Random")>-1){iHeight=fnRandom(document.body.clientHeight);}var sFeatures="dialogHeight: " + iHeight + "px;";return sFeatures;}function fnOpen(){var sFeatures=fnSetValues();window.showModalDialog("showModalDialog_target.htm", "",sFeatures)}</SCRIPT><FORM NAME=oForm>Dialog Height <SELECT NAME="oHeight"><OPTION>-- Random --<OPTION>150<OPTION>200<OPTION>250<OPTION>300</SELECT>Create Modal Dialog Box<INPUT TYPE="button" VALUE="Push To Create"onclick="fnOpen()"></FORM> 

热点排行