ちょっと私は、メイン文書のテーブルの列の特定の番号をクリックし、その列の行が開いているウィンドウを作成しようとしています異なるウィンドウ。メイン文書の行を削除するスクリプトは動作していますが、開かれたウィンドウでは同じスクリプトが機能していないようです。私は問題が何であるかを知りません。ここで私を助けてください。ありがとう。Javascriptが空白のウィンドウで動作していない
Window = window.open('','W1','width=700,height=500');
//Window.document.write("<style type='text/css'>table,th,tr{ cellspacing=0;border- collapse:collapse;border-radius:5px;-moz-border-radius:5px;}</style>");
Window.document.write('<table id="T1" border="1" ><th width="60">S,no.</th><th width="110">Name</th><th width="110">Op Name</th><th width="110">ID</th><th width="110">Synonym record numbers</th><th width="60">Total Duplicity weight</th><th></th></table>');
Window.document.write("<button type=\"button\" value=\"delal\" id=\"delal\" name=\"delal\" onclick=\"delall()\">Delete checked</button>");
Window.document.getElementById("T1").style.borderCollapse="collapse";
Window.document.getElementById("T1").style.padding="5";
Window.document.getElementById("T1").style.backgroundColor="#E0C77A";
Window.document.getElementById('T1').innerHTML += F+M;
Window.document.write('<script type="text/javascript">function deleteRow1(i) {if(confirm("Confirm to Delete??")document.getElementById("T1").deleteRow(i);}function delall(){if(confirm("Are you sure you want to delete the selected rows?")){crows=document.getElementsByName("delcheck");for (i = 0; i<crows.length;i++){if(crows[i].checked){document.getElementById("T1").deleteRow(crows[i].parentNode.parentNode.rowIndex);i--;}}}</script>');
前に、新しいウィンドウに出力が何ですか? –
'SCRIPT'タグを' document.write'に '<\/SCRIPT>'のように設定してください。それ以外の場合、元のスクリプトは停止します。 – Teemu