私は次の機能を持っています:
var index = 0;
var text = 'Hello world!';
function type() {
document.getElementById('screen').innerHTML += text.charAt(index);
index += 1;
var t = setTimeout('type()',200);
}
hello と world の間に br タグを追加できるかどうか知りたいです。
私はそのようにしてみました: 'hello' + br tag + 'world'; おそらくcharAtが原因で、機能しませんでした。
ありがとう