0

我将内容加载到 jquery UI 对话框中抛出了 ajax 并且无法将焦点设置在 H1 标记上。不管怎样,我不能将焦点设置在对话框的任何元素上,它只是堆叠在对话框的最后一个元素上。

这是我的代码:

$(document).on('click', '.home_story_small_top', function( event ){

        event.preventDefault();

        var storyId = $(this).attr('storyId');

        function success( html )
        {       
            $("#storyContent").html(html);

            $('#storyContent').dialog({
                modal: true,
                resizable: false,
                height: $(window).height() - 100,
                width: $(window).width() - 400,
                dialogClass: 'noTitleDialog',
                buttons: {
                    Close: function(){
                        $(this).dialog('destroy');
                    }
                },
                open: function() { 
                    $('h1').focus(); 
                }
            });

            $('#newStoryTag' + storyId).hide();
        } 

        $.ajax({  
            url: "/showstory/" + storyId + "/ajax",
            cache: false,  
            success: success 
        });
    });
4

1 回答 1

0

我不知道您的 HTML 是什么样的,但请尝试等待几毫秒再聚焦。

open: function() {          
  setTimeout(function(){$('#storyContent input').focus();},100);        
}

注意:我从未尝试过,但我认为h1元素不能被聚焦。只有输入元素。

尝试 setTimeout 暂停100几毫秒,然后设置焦点。你可能不需要等待100几毫秒1就可以做到。你可以测试一下。

于 2013-10-01T20:12:46.957 回答