解决layer 关闭当前弹窗 关闭遮罩层 input值获取不到的问题
弹出某个层时需要给层取名(赋值)
var = ggLayer = layer.open({ type: 1, content: $('.choose-gg').html(), anim: 'up', style: 'position:fixed; bottom:0; left:0; width: 100%; height: auto; padding:10px 0; border:none;' });
layer.closeAll(); 关闭遮罩层
layer.close(ggLayer);关闭弹窗
使用layer.open弹出页面时,将页面内容设入content属性中,有时候直接将页面的元素放进来,比如$("xxx").html().
容易掉进坑的地方来了,这样设置实质是layer将你的页面html复制出来一份,新生成的弹出框已经不是你原来写的了
所以,如果你给input起了个id并用id获取input的值,实质上获取的是原本页面的input的值(第一个input),不是layer生成的页面的input(第二个input),而你输入的地方是layer生成的input(第二个),所以只能获得input默认自带的值而获取不到刚输入的值。
解决办法:
给input起个class,不要id,获取input的值得时候要用$(".xxx").eq(1).val(),获取生成的第二个input的值,你会发现成功可以获取了
console.log($(".reasonContent2").eq(1).val())
上一篇:第一次记录Bootstrap table学习笔记(1)
栏 目:JavaScript代码
下一篇:js实现简单页面全屏
本文标题:解决layer 关闭当前弹窗 关闭遮罩层 input值获取不到的问题
本文地址:http://www.codeinn.net/misctech/181592.html