jQuery代码段,用于在重新键入号码时将其转换为美国电话号码格式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery代码段,用于在重新键入号码时将其转换为美国电话号码格式相关的知识,希望对你有一定的参考价值。
This little piece of code will convert to US phone format, as typed.Eg, As the number "0000000000" was typed, it would convert it to (000)-000-0000.
$(function() { $("input[@name='phone']").keyup(function() { var curchr = this.value.length; var curval = $(this).val(); if (curchr == 3) { $("input[@name='phone']").val("(" + curval + ")" + "-"); } else if (curchr == 9) { $("input[@name='phone']").val(curval + "-"); } }); }); </script>
以上是关于jQuery代码段,用于在重新键入号码时将其转换为美国电话号码格式的主要内容,如果未能解决你的问题,请参考以下文章
用于捕获进程 ID 并在存在时将其终止的 Shell 脚本[重复]