表单输入框直接全选表单内容

来源:互联网 发布:java翻译软件 编辑:程序博客网 时间:2024/04/28 14:02
$("#formCode").focus(function () {        //获取焦点后全选        var obj = $(this).get(0);        if (obj.createTextRange) { // IE            var rng = obj.createTextRange();            var sel = rng.duplicate();            sel.select();        } else if (typeof obj.selectionStart == 'number') { // Firefox            obj.selectionStart;            obj.setSelectionRange(0, 1000);            obj.focus();        }    }).mouseover(function () {        $(this).focus();    });

0 1
原创粉丝点击