当前位置: 编程技术>jquery
jquery\js 选中文本框中内容的方法
来源: 互联网 发布时间:2014-09-03
本文导语: 有如下的文本框: 分享下用js与jquery取得其内容的不同写法,代码如下: //JS选中文本框中内容 document.getElementById("xxx_form").focus(); document.getElementById("xxx_form").select(); //jquery选中文本框中内容 $("#xxx_form").focus(); $("#xxx_form")....
有如下的文本框:
分享下用js与jquery取得其内容的不同写法,代码如下:
//JS选中文本框中内容 document.getElementById("xxx_form").focus(); document.getElementById("xxx_form").select(); //jquery选中文本框中内容 $("#xxx_form").focus(); $("#xxx_form").select();