好的,所以我在创建输入文本的javascript效果方面走得很远。但这显然不允许我将html标记传递为可识别的。意思是我不能在其中使用链接等。
任何想法如何解决这个问题? :S
<div id="Container"></div>
<script type="text/javascript" language="javascript">
var myString = "This is the text that will be typed...";
var myArray = myString.split("");
var loopTimer;
function textLooper() {
if(myArray.length > 0) {
document.getElementById("Container").innerHTML += myArray.shift();
} else {
clearTimeout(loopTimer);
}
loopTimer = setTimeout('textLooper()',70);
}
textLooper();
</script>
它不一定只是js解决方案,任何有效的方法,欢迎所有想法。
谢谢。