在使用 javascript 插入 html 符号(如复选标记字符)时,我需要一些帮助。这是我的代码。
<script>
function me(){
var a = document.getElementById("me").value = 3;
if(a==3){
document.getElementById("u").value = "checkmark symbol here";
}
</script>
<input type="text" id="me" value=""/>
<input type="text" id="u" value="It will display here a checkmark symbol any symbo"/>
<input type="button" value="click" onclick="me()" />
任何帮助将不胜感激。谢谢!