我想用0123替代&
到&
。這裏是mine.EmployeeCode 的示例代碼可能包含&。 EmployeeCode從Datagrid中選擇,並在「txtEmployeeCode」文本框中顯示。但是,如果EmployeeCode包含任何&
,那麼它會在文本框中顯示&
。如何從EmployeeCode中刪除&
?任何人都可以幫助...替換&amp;&,<lt < and > gt gt to gt在javascript中
function closewin(EmployeeCode) {
opener.document.Form1.txtEmployeeCode.value = EmployeeCode;
this.close();
}
使用JavaScript –