博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
layer.js弹窗组件layer.prompt无法调用解决
阅读量:6840 次
发布时间:2019-06-26

本文共 457 字,大约阅读时间需要 1 分钟。

加载页面加上:

1
2
3
layer.config({ 
    
extend: 
'extend/layer.ext.js'
});

然后后面执行layer.prompt({})即可,案例:

1
2
3
4
5
6
7
8
9
10
11
12
13
function 
fun(){
        
layer.config({
        
extend: 
'extend/layer.ext.js'
    
});
    
layer.prompt({
        
title: 
'输入任何口令,并确认'
,
        
formType: 1 
//prompt风格,支持0-2
    
}, 
function
(pass){
        
layer.prompt({title: 
'随便写点啥,并确认'
, formType: 2}, 
function
(text){
            
layer.msg(
'演示完毕!您的口令:'
+ pass +
' 您最后写下了:'
+ text);
        
});
    
});
}

 

转载于:https://www.cnblogs.com/i6010/articles/4663454.html

你可能感兴趣的文章