3个回答
2013-07-15
展开全部
private void textBox1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
if(e.KeyCode==Keys.A && e.Control)
{
textBox1.SelectAll();
}
}
{
if(e.KeyCode==Keys.A && e.Control)
{
textBox1.SelectAll();
}
}
展开全部
可以通过js来实现
有如下的文本框:
<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>
有如下的文本框:
<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>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用js来处理,input对象.select()
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询