JS文档Iframe 从新加载
//js
var _iframe1=document.getElementById('orgAjax');
_iframe1.contentWindow.location.reload(true);
//jquery
window.parent.$('#tzglMyIframe').attr('src',""+urlStr+"");
弹出框的样式
<scriptlanguage="javascript">
function editInfo(strName,strPath){
$(window.top.document.getElementsByName("clkName")).val(strName);
$(window.top.document.getElementsByName("clkData")).val(strPath);
$(window.top.document.getElementsByName("clkAction")).trigger("click");
}
</script>
说明:
strName:窗口显示名称
strPath:窗口路径
使用方式:
1、上述js加到</head>与<body>之间
2、原弹窗调用修改为editInfo(strName,strPath)