我正在尝试创建一个输入字段,该字段在键入时自动在键入的文本末尾放置一个问号。
我刚刚想出了这段代码,但显然它会生成多个问号。
$("#id").keyup(function(){
$(this).val($(this).val() + "?");
});
谢谢你的想法。
我正在尝试创建一个输入字段,该字段在键入时自动在键入的文本末尾放置一个问号。
我刚刚想出了这段代码,但显然它会生成多个问号。
$("#id").keyup(function(){
$(this).val($(this).val() + "?");
});
谢谢你的想法。
$("#id").keyup(function(){
if ($(this).val().split('').pop() !== '?') {
$(this).val($(this).val() + "?");
}
});
编辑:
(function($) {
$.fn.setCursorPosition = function(pos) {
if ($(this).get(0).setSelectionRange) {
$(this).get(0).setSelectionRange(pos, pos);
} else if ($(this).get(0).createTextRange) {
var range = $(this).get(0).createTextRange();
range.collapse(true);
range.moveEnd('character', pos);
range.moveStart('character', pos);
range.select();
}
}
}(jQuery));
$("#id").keyup(function(){
if ($(this).val().split('').pop() !== '?') {
$(this).val($(this).val() + "?");
$(this).setCursorPosition( $(this).val().length - 1)
}
});
// Input is way better than keyup, although not cross-browser
// but a jquery plugin can add its support.
$('#id').on('input', function() {
// If the last character isn't a question mark, add it
if ( this.value[ this.value.length - 1 ] !== '?' ) {
this.value += '?';
}
});