送信ボタンが押されたときに、ページ上の要素をその中のテキストで変更することになっているテキストフィールドがあります。値を JavaScript 関数に渡しています。それはうまくいきません。誰かがそれを行う方法/私が間違っていることを教えてもらえますか?
これが私のコードです:
<html>
<head>
<script type = "text/javascript">
function submitText(string, id)
{
document.getElementById(id).innerHTML = string;
}
</script>
</head>
<body>
<p id = "Datepara" style = "font-family:comic sans ms;color:orange;text-align:center;font-size:25px;">
Date Created: 24/9/12 <br /><br /><br/>
</p>
<input id = "changetext" type = "text" value = "Enter text to display text in this webpage!"/>
<input id = "submit" type = "button" onclick = "submitText('Datepara','document.getElementById("changetext").value;'" value = "Submit" />
</body>
</html>