美文网首页
2023-11-17_layer.prompt()的使用

2023-11-17_layer.prompt()的使用

作者: 微笑碧落 | 来源:发表于2023-11-16 19:40 被阅读0次

    前言

    • layer是一款很好用的弹出层框架,可以很方便的在网页上弹框,效果相对好。代码量很少。使用人数也很多
    • layer.prompt()方法用来弹出一个对换框,供用户输入数据。

    1. 用法

    • options和其他layer的函数一样,yes是一个回调函数
    layer.prompt(options, yes)
    

    2.示例

    • 如下示例会弹出一个输入层,提醒用户进行操作。里面的内容是只读并被选中的。
    • 因为选项对象加了延迟属性,会在2秒内自动关闭
    layer.prompt({
            formType: 2,
            id:"remarksPrompt",
            value: "www.google.com",
            title: '提取成功',
            success:function (layero,index){
                $("#remarksPrompt textarea").attr("readOnly","readOnly");
                $("#remarksPrompt textarea").select();
                document.execCommand("copy")
            },
            btn:["确定"],
            time:2000,
            anim: 3     
        }, function(value, index, elem){
            layer.close(index);
    });
    
    image.png

    相关文章

      网友评论

          本文标题:2023-11-17_layer.prompt()的使用

          本文链接:https://www.haomeiwen.com/subject/xmcywdtx.html