提出後に乱数を表示する方法を尋ねますか?あなたが行くここ投稿後に乱数を表示するには?
var stampmonths = new Array("01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12");
var thedate = new Date();
document.getElementById('ref').value = document.write(
stampmonths[thedate.getMonth()] +
thedate.getDate() +
thedate.getFullYear() +
thedate.getSeconds()
);
<form>
<input type="submit" id="ref" name="submit" value="submit" />
</form>
質問している内容が明確ではありません。送信ボタンの値を置き換える方法や、送信ボタンを押した後に乱数だけを表示する方法を尋ねていますか? –