JavaScript的innerText属性

本文概要

  • 使用Javascript的innerText例
innerText属性可以用来写html文件的动态文本。在这里,文本将不会被解释为HTML文本,但一个普通的文本。
它主要用于在网页生成动态内容,如写的验证消息,密码强度等。
使用Javascript的innerText例【JavaScript的innerText属性】在这个例子中,我们将在发布后按键显示密码强度。
< script type="text/javascript" > function validate() { var msg; if(document.myForm.userPass.value.length>5){ msg="good"; } else{ msg="poor"; } document.getElementById('mylocation').innerText=msg; }< /script> < form name="myForm"> < input type="password" value="" name="userPass" onkeyup="validate()"> Strength:< span id="mylocation">no strength< /span> < /form>

上面的例子中的输出
Strength:no strength

    推荐阅读