次のコードを使用しました(このサイトで入手可能な回答から適応)。プログラムは動作しますが、新しい情報に置き換えた後、出力は元の情報 (つまり、"change me" と "change me please") に戻ります。私はJSを学び始めたばかりなので、あなたの助けに感謝します。
<p id="dest">Change please</p>
<p id="dest1">Change too please</p>
<input type="submit" value="submit" onclick="return foo();" />
<script type="text/javascript">
function foo() {
doo();
goo();
return true;
}
function doo() {
x = document.getElementById("QID37_Total");
document.getElementById("dest").innerHTML=x.value;
return true;
}
function goo() {
y = document.getElementById("QR~QID37~1");
document.getElementById("dest1").innerHTML=y.value;
return true;
}
</script>