jquery\js 选中文本框中内容的方法

发布时间:2020-02-29编辑:脚本学堂
本文介绍下,使用jquery与js选中文本框中内容的方法,大家比较下二者的异同,希望对大家有所帮助。

有如下的文本框:
<input name="jbxue_form" id="jbxue_form" value="内容" />

分享下用js与jquery取得其内容的不同写法,代码如下:

<script>
//JS选中文本框中内容
document.getElementById("jbxue_form").focus();
document.getElementById("jbxue_form").select();
//jquery选中文本框中内容
$("#jbxue_form").focus();
$("#jbxue_form").select();
</script>