Home > Web Front-end > JS Tutorial > body text

js automatically converts input Chinese commas into English commas

伊谢尔伦
Release: 2016-11-22 14:48:04
Original
5058 people have browsed it

When processing form input tags, we often encounter the problem of separators between several tags. English commas are generally used. However, it is troublesome to switch between Chinese and English input when processing Chinese input, so it needs to be input on the client. Switch Chinese commas to English commas through js, which facilitates both background processing and front-end friendly input. The main principle is that js captures the input event of Chinese commas, and then processes the string. If the input is a Chinese comma, convert it is the English comma.

Without further ado, just post the code as follows:

<input type="text" name="tags" onKeyUp="ReplaceDot(this)">
<script type="text/javascript">
function ReplaceDot(obj)
{
var oldValue=obj.value;
while(oldValue.indexOf(",")!=-1)//寻找每一个中文逗号,并替换
{
obj.value=oldValue.replace(",",",");
oldValue=obj.value;
}
obj.value = oldValue;
}
</script>
Copy after login


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!