所以我有这个字符串var total_res = R4-4R4-5;
,我想用 替换R4-5
子字符串""
,但到目前为止我已经尝试过这段代码,但它不起作用:
Javascript:
<script>
$(document).ready(function(){
ss = "R4-5";
lool = total_res.replace(ss,"");
alert(lool);//it alerts the same original string
});
</script>
怎么了?谢谢您的帮助。