我有3个电话号码文本框。当用户键入时,它会自动从一个文本框移动到下一个文本框。当用户按下退格键时,我可以将焦点移动到上一个文本框。问题是在IE中,焦点设置为文本框的开头。这是我的代码,在chrome中运行良好。
$('#AreaCode').live('keyup', function (event) {
if ($(this).val().length == $(this).attr("maxlength"))
$('#Prefix').focus();
});
$('#Prefix').live('keyup', function (event) {
if (event.keyCode == 8 && $(this).val().length == 0)
$('#AreaCode').focus();
if ($(this).val().length == $(this).attr("maxlength"))
$('#Number').focus();
});
$('#Number').live('keyup', function (event) {
if (event.keyCode == 8 && $(this).val().length == 0)
$('#Prefix').focus();
});
当向后移动时,如何将焦点设置在内容的末尾?
答案 0 :(得分:89)
这是一种简单的方法。如果你要倒退,只需添加
$("#Prefix").val($("#Prefix").val());
设置焦点后
这是更恰当(更清洁)的方式:
function SetCaretAtEnd(elem) {
var elemLen = elem.value.length;
// For IE Only
if (document.selection) {
// Set focus
elem.focus();
// Use IE Ranges
var oSel = document.selection.createRange();
// Reset position to 0 & then set at end
oSel.moveStart('character', -elemLen);
oSel.moveStart('character', elemLen);
oSel.moveEnd('character', 0);
oSel.select();
}
else if (elem.selectionStart || elem.selectionStart == '0') {
// Firefox/Chrome
elem.selectionStart = elemLen;
elem.selectionEnd = elemLen;
elem.focus();
} // if
} // SetCaretAtEnd()
答案 1 :(得分:50)
我尝试了很多不同的解决方案,唯一适用于我的解决方案是基于Chris G在此页面上的解决方案(但稍作修改)。
我已将其转换为jQuery插件,以供将来用于需要它的任何人使用
(function($){
$.fn.setCursorToTextEnd = function() {
var $initialVal = this.val();
this.val($initialVal);
};
})(jQuery);
用法示例:
$('#myTextbox').setCursorToTextEnd();
答案 2 :(得分:38)
这对我来说很好。 [参考:Gavin G非常好的插件]
(function($){
$.fn.focusTextToEnd = function(){
this.focus();
var $thisVal = this.val();
this.val('').val($thisVal);
return this;
}
}(jQuery));
$('#mytext').focusTextToEnd();
答案 3 :(得分:18)
任何浏览器的代码:
function focusCampo(id){
var inputField = document.getElementById(id);
if (inputField != null && inputField.value.length != 0){
if (inputField.createTextRange){
var FieldRange = inputField.createTextRange();
FieldRange.moveStart('character',inputField.value.length);
FieldRange.collapse();
FieldRange.select();
}else if (inputField.selectionStart || inputField.selectionStart == '0') {
var elemLen = inputField.value.length;
inputField.selectionStart = elemLen;
inputField.selectionEnd = elemLen;
inputField.focus();
}
}else{
inputField.focus();
}
}
答案 4 :(得分:15)
你应该像这样编码。
var num = $('#Number').val();
$('#Number').focus().val('').val(num);
答案 5 :(得分:9)
您可以按照以下内容在文本框的最后位置设置指针。
temp=$("#txtName").val();
$("#txtName").val('');
$("#txtName").val(temp);
$("#txtName").focus();
答案 6 :(得分:1)
可以在输入标记中使用这些简单的javascript。
<input type="text" name="your_name" value="your_value"
onfocus="this.setSelectionRange(this.value.length, this.value.length);"
autofocus />
答案 7 :(得分:1)
var val =$("#inputname").val();
$("#inputname").removeAttr('value').attr('value', val).focus();
// I think this is beter for all browsers...
答案 8 :(得分:1)
Chris Coyier为此提供了一个迷你jQuery插件,效果非常好:http://css-tricks.com/snippets/jquery/move-cursor-to-end-of-textarea-or-input/
如果支持,它将使用setSelectionRange,否则将具有可靠的后备功能。
jQuery.fn.putCursorAtEnd = function() {
return this.each(function() {
$(this).focus()
// If this function exists...
if (this.setSelectionRange) {
// ... then use it (Doesn't work in IE)
// Double the length because Opera is inconsistent about whether a carriage return is one character or two. Sigh.
var len = $(this).val().length * 2;
this.setSelectionRange(len, len);
} else {
// ... otherwise replace the contents with itself
// (Doesn't work in Google Chrome)
$(this).val($(this).val());
}
// Scroll to the bottom, in case we're in a tall textarea
// (Necessary for Firefox and Google Chrome)
this.scrollTop = 999999;
});
};
然后您可以执行以下操作:
input.putCursorAtEnd();
答案 9 :(得分:0)
<script type="text/javascript">
$(function(){
$('#areaCode,#firstNum,#secNum').keyup(function(e){
if($(this).val().length==$(this).attr('maxlength'))
$(this).next(':input').focus()
})
})
</script>
<body>
<input type="text" id="areaCode" name="areaCode" maxlength="3" value="" size="3" />-
<input type="text" id="firstNum" name="firstNum" maxlength="3" value="" size="3" />-
<input type="text" id="secNum" name=" secNum " maxlength="4" value="" size="4" />
</body>