如何查看html字符&在jsp输入字段中?

时间:2015-05-27 02:57:21

标签: mysql jsp

如何在jsp文本框editDescription字段中查看html字符&,我不想显示&

这是我的代码>>>

function Edit(click) 
{
    var description= tablerow.cells[5].innerHTML;
    document.getElementById("editDescription").value = description;
}

当我单击数据表上的“编辑”按钮时,将出现“编辑”弹出窗口并将此值绑定。 one month & half day代替one month & half day

1 个答案:

答案 0 :(得分:1)

现在我可以使用JavaScript替换方法。 {document.getElementById(" editDescription")。value = description.replace(/& / g,'&'); }