当前位置: 编程技术>jquery
jquery 实现文本框焦点自动跳转
来源: 互联网 发布时间:2014-09-03
本文导语: jquery实现的文本框焦点自动跳转,代码如下: 电话号码: - - $(".bell").keyup(function () { var length = $(this).val().length; if (length == "3") { $(this).next(".bell").focus(); } })
jquery实现的文本框焦点自动跳转,代码如下:
$(".bell").keyup(function () { var length = $(this).val().length; if (length == "3") { $(this).next(".bell").focus(); } })
电话号码: - -