如何使用javascript在输入文本中插入符号

时间:2013-07-01 02:01:55

标签: javascript html

我需要一些帮助,使用javascript插入像checkmark字符这样的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()" />

任何帮助将不胜感激。谢谢!

2 个答案:

答案 0 :(得分:2)

JS字符串"\u2713"应该生成一个复选标记(✓)。通常,您可以在此站点上找到所需的字符,然后复制“C / C ++ / Java源代码”部分:

http://www.fileformat.info/info/unicode/char/2713/index.htm

答案 1 :(得分:0)

尝试更改此

if (parseInt(document.getElementById("me").value)==3)