使用javascript删除表单中的某些字符并不会删除“所有其他字符都被删除”
我正在使用的代码是
jmeter -n
由于
使用
中的信息您可能需要使用unicode:stackoverflow.com/questions/9401312 / ... - sirrocco 41分钟前
我用这个
对问题进行了排序function stripIt(x){
x.value = x.value.replace(/[)’‘(&%<>?$-]/g,'');
};
so its the ’‘ that are not being removed
感谢大家的投入