如何使用JavaScript替换ASP.NET隐藏字段中的字符串?
var s = document.getElementById('HF').value;
其中HF是我的隐藏字段,我想用HF值替换一些字符串,但是s不显示替换函数,我应该将s转换为ToString吗?
感谢
答案 0 :(得分:3)
你是说这个?
var s = document.getElementById('HF').value;
document.getElementById('HF').value = s.replace(/oldstring/g, "newstring");