JS实现文本框自动选中内容
Posted 潇潇@暮雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS实现文本框自动选中内容相关的知识,希望对你有一定的参考价值。
<form id=‘form_test‘>
<input type=‘text‘ />
<input type=‘text‘ />
<input type=‘text‘ />
<input type=‘text‘ />
<input type=‘text‘ />
<input type=‘text‘ />
<input type=‘text‘ />
</form>
<script>
$(document).ready(function(){
/*文本框获得焦点时,自动选中内容*/
$("# form_test input[type=‘text‘]").bind(‘focus‘,function(){
$(this).select();
})
})
</script>
以上是关于JS实现文本框自动选中内容的主要内容,如果未能解决你的问题,请参考以下文章