如何在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
。
答案 0 :(得分:1)
现在我可以使用JavaScript替换方法。 {document.getElementById(" editDescription")。value = description.replace(/& / g,'&'); }