js 激活 input 编辑框和全选内容

180it 2021-03-30 PM 1192℃ 0条
<input name="jbxue_form" id="jbxue_form" value="内容" />
<script>
//JS选中文本框中内容
document.getElementById("jbxue_form").focus();
document.getElementById("jbxue_form").select();
//jquery选中文本框中内容
$("#jbxue_form").focus();
$("#jbxue_form").select();
</script>
支付宝打赏支付宝打赏 微信打赏微信打赏

如果文章或资源对您有帮助,欢迎打赏作者。一路走来,感谢有您!

标签: none

js 激活 input 编辑框和全选内容