layer父页获取弹出层输入框里面的值方法

主要是因为修改功能,原来页面填写数据如图

layer父页获取弹出层输入框里面的值方法

改为

其中点击填写明细弹出框

layer父页获取弹出层输入框里面的值方法

填写完毕后点击确认返回,同事这里因为她是存的多表,所以点击确认就直接保存数据了,改的这个功能原本保存是整体保存,我就不想改原来的逻辑,只想把填写的值带回去用隐藏控件存一下,到时候按照原来的逻辑整体存,所以没办法参考她的,最后搜索很多,解决了问题,具体代码如下:

父页面:

<div> <div> <div> <label> 经费来源总计(元)</label> <input type="text" readonly="readonly" onkeyup="value=value.replace(/[^\d.]/g,'')" placeholder="填写来源明细" value="@pro.AmountSum"/> <input type="button" value="填写来源明细" /> <input type="hidden" value="@pro.CenterAmount" /> <input type="hidden" value="@pro.CityAmount" /> <input type="hidden" value="@pro.DisAmount" /> <input type="hidden" value="@pro.StreetAmount" /> <input type="hidden" value="@pro.OtherAmount" /> </div> </div> </div>

js:

//弹出经费来源明细 function ShowAmountDetail() { var index = layer.open({ type: 2, title: '填写经费明细', shadeClose: false, skin: 'layui-layer-rim', area: ['50%', '50%'], maxmin: true, content: '/Project/AmountDetail?ProjectCode=' + "@ProjectCode", btn: ['确定', '关闭'], yes: function (index, layero) { debugger; var body = layer.getChildFrame('body', index); //得到iframe页的body内容 var CenterAmount = body.find("#CenterAmount").val(); var CityAmount = body.find("#CityAmount").val(); var DisAmount = body.find("#DisAmount").val(); var StreetAmount = body.find("#StreetAmount").val(); var OtherAmount = body.find("#OtherAmount").val(); if (CenterAmount == null || CenterAmount == "") CenterAmount = 0; if (CityAmount == null || CityAmount == "") CityAmount = 0; if (DisAmount == null || DisAmount == "") DisAmount = 0; if (StreetAmount == null || StreetAmount == "") StreetAmount = 0; if (OtherAmount == null || OtherAmount == "") OtherAmount = 0; sum = Number(CenterAmount) + Number(CityAmount) + Number(DisAmount) + Number(StreetAmount) + Number(OtherAmount); document.getElementById("CenterAmount").value = CenterAmount; document.getElementById("CityAmount").value = CityAmount; document.getElementById("DisAmount").value = DisAmount; document.getElementById("StreetAmount").value = StreetAmount; document.getElementById("OtherAmount").value = OtherAmount; document.getElementById("AmountSum").value = sum; //最后关闭弹出层 layer.close(index); }, cancel: function () { //右上角关闭回调 } }); // layer.full(index); }

子页面:

<!DOCTYPE html> <html> <head> <meta content="width=device-width" /> <title>AmountDetail</title> </head> <body> <div> <table> <tr><td rowspan="5">经济来源明细</td><td>中央拨款(元)</td> <td> <input onkeyup="value=value.replace(/[^\d.]/g,'')" type="text" /> </td></tr> <tr><td>市级专款(元)</td> <td> <input onkeyup="value=value.replace(/[^\d.]/g,'')" type="text" /> </td></tr> <tr><td>区级资金(元)</td> <td> <input onkeyup="value=value.replace(/[^\d.]/g,'')" type="text" /> </td></tr> <tr><td>街镇配套(元)</td> <td> <input onkeyup="value=value.replace(/[^\d.]/g,'')" type="text" "/> </td></tr> <tr><td>其他(元)</td> <td> <input onkeyup="value=value.replace(/[^\d.]/g,'')" type="text" /> </td></tr> </table> </div> </body> </html>

以上这篇layer父页获取弹出层输入框里面的值方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/f3b92d6ae6cfeda396d0aba46162bbb1.html