浏览器中的默认行为是选择下一个表单元素。我希望我的文本框缩进代码,按Tab键时可以说4个空格。就像你在IDE中缩进代码一样。我如何在JavaScript中实现此行为?如果我必须使用jQuery,或者它更容易,我很好。
谢谢!
答案 0 :(得分:1)
跟踪关键代码并向元素添加4个空格应该这样做。按Tab键时可以阻止默认值。像这样?:
在所有评论后编辑:
啊,好的,所以你实际上要求几个JS函数(在文本区域中获取光标位置,更改文本,在文本区域中设置光标位置)。多一点环顾四周会给你所有这些,但因为我是一个好人,我会把它放在那里为你。其他答案可以在this post about getCursorPosition()和this post about setCursorPosition()中找到。我为你更新了jsFiddle。这是代码更新
<script>
$('#myarea').on('keydown', function(e) {
var thecode = e.keyCode || e.which;
if (thecode == 9) {
e.preventDefault();
var html = $('#myarea').val();
var pos = $('#myarea').getCursorPosition(); // get cursor position
var prepend = html.substring(0,pos);
var append = html.replace(prepend,'');
var newVal = prepend+' '+append;
$('#myarea').val(newVal);
$('#myarea').setCursorPosition(pos+4);
}
});
new function($) {
$.fn.getCursorPosition = function() {
var pos = 0;
var el = $(this).get(0);
// IE Support
if (document.selection) {
el.focus();
var Sel = document.selection.createRange();
var SelLength = document.selection.createRange().text.length;
Sel.moveStart('character', -el.value.length);
pos = Sel.text.length - SelLength;
}
// Firefox support
else if (el.selectionStart || el.selectionStart == '0')
pos = el.selectionStart;
return pos;
}
} (jQuery);
new 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);
</script>
<textarea id="myarea"></textarea>