API地址:http://layer.layui.com/api.html#end
調用END回調方法:
類型:Function,默認:null
無論是確認還是取消,只要層被銷毀了,end都會執行,不攜帶任何參數。
function updateStock(id) { //iframe層 parent.layer.open({ type: 2, title: '修改', shadeClose: false, //點擊遮罩關閉 shade: 0.8, area: ['30%', '45%'], maxmin: true, closeBtn: 1, content: ['/BusinessActivity/CheckStock/LayerUpdateStock?id=' + id, 'yes'], //iframe的url,yes是否有滾動條 //yes: function (index, layero) { // alert(index); // alert(layero); //}, end: function () { location.reload(); } });
