有如下的文本框:
<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>