layui page pops up a small window and close

function showdialog() {
 layer.open({
   type: 2,
   title: '发起调度',
   shadeClose: true,
   shade: 0.8,
   area: ['650px', '60%'],
   content: "http://www.baidu.com" //iframe的url
   });
 }

  window.parent.location.reload (); // refresh the parent page

  var index = parent.layer.getFrameIndex (window.name); // Get Window Index

parent.layer.close(index);

Guess you like

Origin www.cnblogs.com/zhouguomao/p/11429205.html