layui父页面怎么获取layer.open弹窗中的值 ,下面小编为您解答:layui父页面怎么获取layer.open弹窗中的值 ,下面小编为您解答: 1、获取input中的值:【content页面】 div style="padding: 0 10px;margin-top:10px" input type="text" id="refuseReason" name="refuseReason" placeholder="请输入拒绝理由" class="layui-input"/div 父页面 layer.open({
1、获取input中的值:【content页面】
<div style="padding: 0 10px;margin-top:10px">
<input type="text" id="refuseReason" name="refuseReason" placeholder="请输入拒绝理由" class="layui-input">
</div>
父页面
layer.open({
type:1,
title:"拒绝理由",
content:'<div style="padding: 0 10px;margin-top:10px">'+
'<input type="text" id="refuseReason" name="refuseReason" placeholder="请输入拒绝理由" class="layui-input">'+
'</div>',
area: ['500px', '150px'],
btn: ['提交', '取消'],
btnAlign:'c',
resize:true,
yes:(index,layero)=>{
// 获取content页面中id为refuseReason的值
const refuseReason = top.$('#refuseReason').val();
},
cancel:(index, layero)=>{}
})
2、获取select中选中的值:【content页面】
<select id="groupId" name="groupId" xm-select="group">
<span th:each="info : ${groupList}">
<option th:text="${info.st_g_name}" th:value="${info.st_g_id}"></option>
</span>
</select>
父页面
layer.open({
type: 2,
title: "标题",
area: ['600px', '500px'],
content: "/page/layerOpen", //请求后端返回页面地址
btn: ['提交', '取消'],
yes: function(index, layero){
//得到iframe页的窗口对象,执行iframe页的方法:
var iframeWin = window[layero.find('iframe')[0]['name']];
// 获取页面中xm-select属性为group的下拉选择框选中的值
var selectGroupData = iframeWin.layui.formSelects.value('group', 'val');
console.log(selectGroupData);
}
})
沃梦达教程
本文标题为:layui父页面怎么获取layer.open弹窗中的值


猜你喜欢
- 判断可拖动div是否重合 重合多少 2024-01-17
- javascript实现类似java中getClass()得到对象类名的方法 2023-11-30
- TypeScript中函数重载写法 2023-08-11
- 不要小看注释掉的JS 引起的安全问题 2023-11-30
- jquery使用ul模拟select实现表单美化的方法 2024-01-04
- js异步上传多张图片插件的使用方法 2024-01-14
- js中的循环方式及各种遍历的方法 2023-08-11
- 使用canvas生成含有微信头像的邀请海报没有微信头像问题 2023-12-23
- 一文总结Vue和React的异同 2023-07-10
- layui open值获取及数据回显 2022-10-05