2

AJAX 呼び出しからのデータを使用してテーブルを動的に作成しています。「選択/ドロップダウン ボックス」.on('change') 関数を使用して値を PHP に送信しています。テーブルが表示されたら、テーブルに動的に作成された検索ボックスにフォーカスを設定したいと考えています。

問題は、テーブルが表示されるまでに数秒かかるため、テーブルが表示される前に .focus() コマンドが起動することです。create table 関数が完了した後に .focus() コマンドを起動したいと思います。

Javascript/Jquery コード:

$('#t6F3Box1').on('change', function()
    {   
        var $newTable ='<table id="tempEmployerTbl" class="studentTables"><thead><tr>';
        var $searchStr=new RegExp("ID");
        var $tableContainerDiv="#t6F3TableCont";
        var $rowFlag=0;
        var $responseDataValue=[]
        var $employerState=$('#t6F3Box1').val();
        var $getTableDataPhp="../application/employer.php";
        var $data=[];

            $('#t6F3ErrDiv').text('');
            $('#t6F3TableCont, #t6F3HLine2, #t6F3HLine2').show();

        $data += "&employerState=" + encodeURIComponent($employerState);

        $.ajax({
        type: 'POST',
        async: false,
        url:  $getTableDataPhp,
        cache: false,
        datatype: 'json',
        data: $data,
        success: function($responseData)
        {

            //Loop through the responsdata returned in a JSON Array
            //dynamically create the Employer drop down box 
            if (!$responseData.authenticationError)
            {
                    //Create the header for the Employer Table
                    $.each($responseData, function($key, $value) 
                    {
                        if($rowFlag==0)
                        {
                            $responseDataValue=$responseData[$key];
                            $.each($responseDataValue, function($keys, $values)
                            {
                                if ($searchStr.test($keys))
                                {

                                    $newTable += '<th class="tableDataHide">'  + $keys + '</th>';

                                }
                                    else
                                {

                                    $newTable += '<th class="tableDataShow">'  + $keys + '</th>'
                                }           


                            });
                            $rowFlag=1;
                        }
                    });
                $newTable +='</tr></thead><tbody>';

                //Create the body for the Employer Table
                $.each($responseData, function($key, $value) 
                {
                    $newTable +=  '<tr>'
                    $responseDataValue=$responseData[$key];
                    $.each($responseDataValue, function($keys, $values)
                    {   
                        if ($searchStr.test($keys))
                        {

                            $newTable += '<td class="tableDataHide">'  + $values + '</td>';

                        }
                            else
                        {
                            if($values==null)
                            {
                                $values="";
                            }
                            $newTable += '<td class="tableDataShow">'  + $values + '</td>'
                        }           

                    }); 

                    $newTable +='</tr>';


                }); 

                $newTable +='</tbody></table>';
                $($tableContainerDiv).html($newTable); 

                $("#tempEmployerTbl").dataTable();
$('#tblSearchBox').focus();

            }               
        }
    });
4

1 に答える 1

0

あなたの例でどこを呼び出すかさえわかりません.focusが、解決策は、単に$($tableContainerDiv).html($newTable);ajax コールバックによって追加された後に呼び出すことです。

于 2013-04-01T19:40:57.140 に答える