首页 相关文章 自动检查并替换文本框内的字符

自动检查并替换文本框内的字符

HTML
HEAD
META http-equiv='Content-Type' content='text/html; charset=gb2312'
TITLE自动检查并替换文本框内的字符/TITLE

SCRIPT LANGUAGE="JavaScript"
!-- Begin
function replaceChars(entry) {
out = "a"; // 要替代的字母
add = "z"; // 替换后的字母
temp = "" + entry;

while (temp.indexOf(out)-1) {
pos= temp.indexOf(out);
temp = "" + (temp.substring(0, pos) + add +
temp.substring((pos + out.length), temp.length));
}
document.subform.text.value = temp;
}
// End --
/script
/HEAD[ 查看全文 ]

2016-02-19 标签:

自动检查并替换文本框内的字符的相关文章

手机页面
收藏网站 回到头部