ホームページ > 記事 > ウェブフロントエンド > HTML を書くのは初めてなので、何を間違えたのかわかりません。助けていただければ幸いです。_html/css_WEB-ITnose
<html> <head> <title>CSS Example</title> </head> <body> <input type="button" onclick="start('abcdefg')" value="start" /> <input type="text" id="here" /> <script type="text/javascript"> function start(str1) { str=str1; len=str.length; i=0; dwrite(); } function dwrite() { document.getElementById("here").value=document.getElementById("here").value + str.charAt(i); if( i++ ==len ) { i=0; return true; } setTimeout("dwrite()",500); } </script> </body></html>
「さらにお聞きしたいのですが、この高さ方法を使用することに問題はありますか? タイプミス、デバッグ方法であるべきです。」
まずメソッド名を変更すればOK
まずはメソッド名を変更すればOK
なんでこれがキーワードなの?ありがとうございます。JavaScript の記述方法について何かありますか?
2階さんの返信より引用:
startメソッド名を変えるだけでOK
なんでこれがキーワードなの?ありがとうございます。JavaScript の記述方法について何かありますか?
document.getElementById("ここ").value=document.getElementById("ここ").value + str.charAt(i);
>>
document.getElementById("ここ").value+=str.charAt (i);
ありがとうございます!