js字符串替换
2014-10-09来源:易贤网

<script>

function check()

{var tempstr

tempstr=ReplaceAll(document.form.temp.value,",","*")

alert(tempstr);

}

function ReplaceAll(str, sptr, sptr1)

{

while (str.indexOf(sptr) >= 0)

{

str = str.replace(sptr, sptr1);

}

return str;

}

</script>

<form onsubmit="check();" name="form">

<input type="text" size="58" name="temp"/>

<input type="submit" value="asdf" />

</form>

更多信息请查看IT技术专栏

2025公考·省考培训课程试听预约报名

  • 报班类型
  • 姓名
  • 手机号
  • 验证码
推荐信息