禁用/刪除的JavaScript我有我的頁面中的iframe用下面的代碼:jQuery的 - 從IFRAME
...
<script language="javascript" type="text/javascript">
function clearMessage() {
window.print();
}
$(function() {
var state=0;
if (state==1) {
window.print();
window.opener.location = window.opener.location.href;
}
var sentToPrint=0;
if (sentToPrint==1)
{
window.print();
window.opener.location = window.opener.location.href;
}
});
window.onunload = refreshParent;
function refreshParent() {
if (('1') == '1') {
window.opener.location = window.opener.location.href;
//window.opener.location = 'mainPage.aspx'
}
}
</script>
...
基本上它是打印在表格的頁面提交,或者如果我有 「打印= 1 「在URL中,我發送」print = 0「,因爲我不想打印iframe。
所以我想禁用此部分或刪除這部分的形式使用jQuery我的父頁面。
有沒有什麼方法來禁用從IFRAME刪除它的打印功能或?
謝謝!
您是否有權訪問iframe? –
沒有,在iframe的來源是不是我的網站 –
無需訪問源代碼,你不能做通過JavaScript任何由於CORS限制 –