OnClick焦点在Textfield中带动画

时间:2013-09-14 10:04:21

标签: jquery animation onclick focus textfield

我尝试过专注没有动画,并且完美无缺。 像这样:

document.forms['search_form'].elements['search'].focus()

我想做什么?:

I am using Animation (Which is working Perfect). So how can i set Focus into 
the **textfield** with Animation.

这样做的目的:

So that i dont have to click into the textfield for typing anything in it.

这是我的CODE DEMO:

http://jsfiddle.net/HBgwx/3/

1 个答案:

答案 0 :(得分:1)

$('a').click(function(){
    $('html, body').animate({
        scrollTop: $('#search').offset().top
    }, 500);
    $("#search").focus();
    return false;
});

<强> JSFIDDLE DEMO