Merge pull request #1136 from gewanbo/main

layer.prompt的文本框添加placeholder
pull/1138/head^2
贤心 2022-10-03 16:25:53 +08:00 committed by GitHub
commit 1553b979df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -1202,7 +1202,7 @@ var cache = layer.cache||{}, skin = function(type){
//仿系统prompt //仿系统prompt
layer.prompt = function(options, yes){ layer.prompt = function(options, yes){
var style = ''; var style = '', placeholder = '';
options = options || {}; options = options || {};
if(typeof options === 'function') yes = options; if(typeof options === 'function') yes = options;
@ -1212,8 +1212,11 @@ layer.prompt = function(options, yes){
style = 'style="width: '+ area[0] +'; height: '+ area[1] + ';"'; style = 'style="width: '+ area[0] +'; height: '+ area[1] + ';"';
delete options.area; delete options.area;
} }
var prompt, content = options.formType == 2 ? '<textarea class="layui-layer-input"' + style +'></textarea>' : function(){ if (options.placeholder) {
return '<input type="'+ (options.formType == 1 ? 'password' : 'text') +'" class="layui-layer-input">'; placeholder = ' placeholder="' + options.placeholder + '"';
}
var prompt, content = options.formType == 2 ? '<textarea class="layui-layer-input"' + style + placeholder + '></textarea>' : function () {
return '<input type="' + (options.formType == 1 ? 'password' : 'text') + '" class="layui-layer-input"' + placeholder + '>';
}(); }();
var success = options.success; var success = options.success;