Jquery 在 Internet Explorer 中存在选择方法问题
我想使用 jquery live() 自动选择文本框中的文本,但它似乎在 Internet Explorer 8 中不起作用。代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.js"></script>
<script type="text/javascript">
$(function(){
$('input.textInput')
.live('focus',
function(e){
$(this).select();
// alert(1) // if i uncomment this it works
});
});
</script>
</head>
<body>
<input type="text" class="textInput" value="0,00" />
</body>
</html>
但是,如果我取消注释alert(1) 语句,它就可以工作。有什么想法吗?
I want to use jquery live() to automatically select the text in a text box but it doesn't seem to work in internet explorer 8. Here's the code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.js"></script>
<script type="text/javascript">
$(function(){
$('input.textInput')
.live('focus',
function(e){
$(this).select();
// alert(1) // if i uncomment this it works
});
});
</script>
</head>
<body>
<input type="text" class="textInput" value="0,00" />
</body>
</html>
If, however, i uncomment the alert(1) statement it does work. Any ideas what the problem is here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这很奇怪,如果你不使用实时事件它也有效:
http://jsfiddle.net/JKVXU/1/
This is strange, it also works if you don't use the live event:
http://jsfiddle.net/JKVXU/1/
尝试
http://jsfiddle.net/JKVXU/23/
Try
http://jsfiddle.net/JKVXU/23/
您是否尝试过使用
val()
来获取文本框 vlaue?Have you tried using
val()
to get the text box vlaue instead?我认为浏览器不喜欢警报上的整数值。
试试这个:alert('1');
I think the browser doesn't like the integer value on the alert.
try this: alert('1');