index.html にテキストボックスがあり、その値を取得して、別の html ファイル (result.html) のテキストボックスに配置したいと考えています。(同じ.jsファイルを使用しています)
index.html テキストボックス:
<input id="txt2" readonly="true" type="number" value="0" name="score" style="border:none;background-color:#f0f2f7">
result.html テキストボックス:
<input id="txt3" readonly="true" type="number" value="0" name="score" style="border:none;background-color:#f0f2f7"></td>
これは、他のページに自動的に移動するコードです。
if((mins == 0) && (secs == 0)) {
//window.alert("Time is up.Your score is "+score); // change timeout message as required
document.getElementById('txt2').value = score;
window.location = "score.html" // redirects to specified page once timer ends and ok button is pressed
}
else {
cd = setTimeout("redo()",1000);
}
そして、それらは異なるhtmlにあるため、txt3はどのようにtxt2の値を取得しますか?
前もって感謝します。