window.prompt的替代方法,不适用于webkit浏览器

时间:2014-11-06 23:18:17

标签: javascript jquery css

弹出对话框是否有替代方法,其中包含带有确定和取消按钮的文本框。

我尝试了window.prompt,但它不能在我的自定义webkit浏览器上运行,而是在Mozilla和其他人上工作。

   function Add() {

        var reg = /^[a-zA-Z0-9_-]+$/;
        var newName = window.prompt("New Recipe");
        //Check for alphanumeric and 2 special charaters
        if(!reg.test(newName)) {
            window.alert("only alpha numeric"); 
            return false; 
        }
        if((reg.test(" "))||(newName.length == 0)) {
            return false;
        }
 }

0 个答案:

没有答案