我想删除'<' '>'从字符串,所以我使用脚本
<html>
<body>
<script>
var f = ((/(<script>)/i).exec("hello<") != null);
alert("ok"+f);
document.write("<br>Value:" +f);
</script>
</body>
</html>
但是我将变量f值变为null ..
如果代码有任何问题,请帮助我。
答案 0 :(得分:0)
我希望这会有所帮助
if("hello<".indexOf('<') != -1){
var f = "hello<".replace('<','');
alert("ok "+f);
}
答案 1 :(得分:0)
您可以使用JavaScript正则表达式来实现此目的。
"<script>".replace(/<|>/ig, "");
outputs: "script"
答案 2 :(得分:0)
var f = ('<script>'.replace(/<|>/g, ''));
alert("ok"+f);
document.write("<br>Value:" +f);
答案 3 :(得分:0)
您可以使用.test
方法:
var originalString = '<script>',
r = originalString.test(/<|>/g, ''); // returns true or false
if (r === true) {
//whatever you wanna do if you have special characters in
// your string
} else {
// no special chars - all clean!
}