javascript onSelect
我想用javascript做一个文本框,当选中这个文本框中的全部字的时候弹出一个"我被选中了"的消息框,,我的代码:<script>functionxuan(...
我想用javascript做一个文本框,当选中这个文本框中的全部字的时候弹出一个"我被选中了"的消息框,,我的代码: <script> function xuan(msg) { alert(msg); } </script> <form name="form1"> <input type="text" name="name" onSelect="xuan('我被选中了')"> </form> 可是,这个只要选一个字就弹出来了,,我是想让他选完时才弹,, 高手们帮下忙了,.,
展开
1个回答
展开全部
<script>
function xuan(msg){
var name=document.getElementById('name');
var o=document.selection.createRange();
if (o.text.length==name.value.length){alert(msg);}
}
</script>
<form name="form1">
<input type="text" id="name" name="name" value="中华人民共和国" onSelect="xuan('我被选中了')">
</form>
function xuan(msg){
var name=document.getElementById('name');
var o=document.selection.createRange();
if (o.text.length==name.value.length){alert(msg);}
}
</script>
<form name="form1">
<input type="text" id="name" name="name" value="中华人民共和国" onSelect="xuan('我被选中了')">
</form>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询