Jquery与Internet Explorer中的select方法问题一起生活

时间:2011-03-28 15:17:25

标签: select focus live jquery

我想使用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)语句,它确实有效。任何想法问题在这里?

4 个答案:

答案 0 :(得分:1)

这很奇怪,如果您不使用直播活动,它也有效: http://jsfiddle.net/JKVXU/1/

答案 1 :(得分:1)

尝试

$('input.textInput').live("focus",function(e){
    $(this).focus(function () {
        $(this).select();
    });
});

http://jsfiddle.net/JKVXU/23/

答案 2 :(得分:0)

您是否尝试过使用val()来获取文本框值?

答案 3 :(得分:-1)

我认为浏览器不喜欢警报上的整数值。

试试这个:警告('1');