如何在asp.net中使用JavaScript设置动态生成的文本框的焦点?

如何在asp.net中使用JavaScript设置动态生成的文本框的焦点?,javascript,c#,jquery,asp.net,Javascript,C#,Jquery,Asp.net,我有一个项目,我在其中动态生成一行的单元格。更清楚地说,在我的场景中,我有8-9个单元格排成一行。第一个和第二个单元格是按钮,之后是文本框。现在页面加载时自动添加了5行。当用户在这5行中填充数据,并到达最后一行时,在最后一行的最后一个单元格进行制表后,将生成新的5行 我已经使用JavaScript完成了这项工作。现在,当我添加这5行时,焦点不能集中在新生成行的第一个文本框(第三个单元格)。如何设置新生成行的文本框焦点 我的行代码: function onRowDoubleClick_Add_Ro

我有一个项目,我在其中动态生成一行的单元格。更清楚地说,在我的场景中,我有8-9个单元格排成一行。第一个和第二个单元格是按钮,之后是文本框。现在页面加载时自动添加了
5行
。当用户在这5行中填充数据,并到达最后一行时,在最后一行的最后一个单元格进行制表后,将生成新的5行

我已经使用JavaScript完成了这项工作。现在,当我添加这5行时,焦点不能集中在新生成行的
第一个文本框(第三个单元格)
。如何设置新生成行的文本框焦点

我的行代码:

function onRowDoubleClick_Add_Row(id, rowNo)
        {
            var New_RowNo = (parseInt(rowNo) + parseInt(1));
            var table = document.getElementById('<%= tblItem.ClientID %>');
            var rowCount = table.rows.length;
            var row = table.insertRow(rowCount);
            row.setAttribute("class", "gridRow");

            // Delete
            var cell11 = row.insertCell(0);
            cell11.setAttribute("style", "width:20px;");
            var C11_element2 = document.createElement("input");
            var C11_EID = "MainContent_Image" + New_RowNo + "_" + New_RowNo + "_A_" + New_RowNo;  //"MainContent_Image10_A_10"
            var C11_EName = "ctl00$MainContent$Image" + New_RowNo + "_" + New_RowNo + "_A_" + New_RowNo;   //"ctl00$MainContent$Image10_A_10"
            C11_element2.type = "image";
            C11_element2.setAttribute("src", "Images/collapse.gif");
            C11_element2.setAttribute("title", "Delete");
            C11_element2.setAttribute("id", C11_EID.toString());
            var click = "return window.confirm('Are you sure you want to delete this item');";
            C11_element2.setAttribute("Click", click);
            C11_element2.setAttribute("name", C11_EName);
            //var blur = "onRowDoubleClick_Add_Row('Image" + New_RowNo + "_A_" + New_RowNo + "','" + New_RowNo + "');";
            //C11_element2.setAttribute("onblur", blur);
            var Check_Delete = "Check_Delete('Image" + New_RowNo + "_A_" + New_RowNo + "');";
            //C11_element2.setAttribute("onmousedown", Check_Delete);
            cell11.appendChild(C11_element2);

            // Iten Number
            var cell1_1 = row.insertCell(1);
            cell1_1.setAttribute("style", "width:25px;padding-right:5px;");
            var C1_element1_1 = document.createElement("input");
            C1_element1_1.type = "text";
            C1_element1_1.setAttribute("style", "width:100%;");
            C1_element1_1.setAttribute("id", "MainContent_txtItem" + New_RowNo);
            var blur = "getItemNoValue('txtItem" + New_RowNo + "','" + New_RowNo + "','" + New_RowNo + "','A_" + New_RowNo + "','A_');";
            C1_element1_1.setAttribute("onblur", blur);
            C1_element1_1.setAttribute("name", "ctl00$MainContent$txtItem" + New_RowNo);
            cell1_1.appendChild(C1_element1_1);

.

.

.

.

// Notes
            var cell10 = row.insertCell(4);
            cell10.setAttribute("style", "width:120px; padding-right: 5px;");
            // Added by Shiv on 12-02-2013 To Set editor on main grid
            var C10_element2 = document.createElement("textarea");
            C10_element2.type = "text";
            C10_element2.setAttribute("style", "width:100%; height:30px;visibility: visible;");
            C10_element2.setAttribute("id", "MainContent_txtNote_New" + New_RowNo);
            C10_element2.setAttribute("class", "setFCkeditor");
            C10_element2.setAttribute("TextMode", "MultiLine");
            var blur = "NoteChange('txtNote" + New_RowNo + "','" + New_RowNo + "','" + New_RowNo + "','A_" + New_RowNo + "','A_');";
            C10_element2.setAttribute("onblur", blur);
            C10_element2.setAttribute("name", "ctl00$MainContent$txtNote" + New_RowNo);
            cell10.appendChild(C10_element2);

            //Qty
            var cell4 = row.insertCell(5);
            cell4.setAttribute("style", "min-width:10px; padding-right: 5px;");
            var C4_element2 = document.createElement("input");
            C4_element2.type = "text";
            C4_element2.setAttribute("style", "width:95%;");
            C4_element2.setAttribute("id", "MainContent_txtQty" + New_RowNo);
            var blur = "OrderQtyChange('txtQty" + New_RowNo + "',' " + New_RowNo + "','" + New_RowNo + "','A_" + New_RowNo + "','A_');";
            C4_element2.setAttribute("onblur", blur);
            C4_element2.setAttribute("name", "ctl00$MainContent$txtQty" + New_RowNo);
            cell4.appendChild(C4_element2);
            var C4_exID = "MainContent_FilteredTextBoxExtender_txtQty" + New_RowNo;
            var C4_exPlant = "MainContent_txtQty" + New_RowNo;
            Sys.Application.add_init(function () {
                $create(Sys.Extended.UI.FilteredTextBoxBehavior,
                {
                    "ValidChars": "1234567890.",
                    "id": C4_exID
                },
                null, null, $get(C4_exPlant));
            });

            //Hour
            var cellHour = row.insertCell(6);
            cellHour.setAttribute("style", "min-width:10px; padding-right: 5px;");
            var cellHour_element2 = document.createElement("input");
            cellHour_element2.type = "text";
            cellHour_element2.setAttribute("style", "width:95%;");
            cellHour_element2.setAttribute("id", "MainContent_txtHour" + New_RowNo);
            var blur = "OrderQtyChange('txtQty" + New_RowNo + "',' " + New_RowNo + "','" + New_RowNo + "','A_" + New_RowNo + "','A_');";
            cellHour_element2.setAttribute("onblur", blur);
            cellHour_element2.setAttribute("name", "ctl00$MainContent$txtHour" + New_RowNo);
            cellHour.appendChild(cellHour_element2);
            var cellHour_exID = "MainContent_FilteredTextBoxExtender_txtHour" + New_RowNo;
            var cellHour_exPlant = "MainContent_txtHour" + New_RowNo;
            Sys.Application.add_init(function () {
                $create(Sys.Extended.UI.FilteredTextBoxBehavior,
                {
                    "ValidChars": "1234567890.",
                    "id": cellHour_exID
                },
                null, null, $get(cellHour_exPlant));
            });

            // Price
            var cell6 = row.insertCell(7);
            cell6.setAttribute("style", "width:50px; padding-right: 5px;text-align:right;");
            var C6_element2 = document.createElement("input");
            C6_element2.type = "text";
            C6_element2.setAttribute("style", "width:95%; text-align:right;");
            C6_element2.setAttribute("class", "priceChild");
            C6_element2.setAttribute("id", "MainContent_txtPrice" + New_RowNo);
            var blur = "OrderPriceChange('txtPrice" + New_RowNo + "','" + New_RowNo + "','" + New_RowNo + "','A_" + New_RowNo + "','A_');";
            //blur += "onRowDoubleClick_Add_Row('txtPrice" + New_RowNo + "','" + New_RowNo + "');";
            C6_element2.setAttribute("onblur", blur);
            C6_element2.setAttribute("name", "ctl00$MainContent$txtPrice" + New_RowNo);
            cell6.appendChild(C6_element2);

            var C6_exID = "MainContent_FilteredTextBoxExtender_txtPrice" + New_RowNo;
            var C6_exPlant = "MainContent_txtPrice" + New_RowNo;
            Sys.Application.add_init(function () {
                $create(Sys.Extended.UI.FilteredTextBoxBehavior,
                {
                    "ValidChars": "1234567890.-",
                    "id": C6_exID
                },
                null, null, $get(C6_exPlant));
            });

            // Cost
            var cellCost = row.insertCell(8);
            cellCost.setAttribute("style", "width:50px;padding-right:5px;");
            var cellCost_element1 = document.createElement("span");
            cellCost_element1.setAttribute("style", "display:inline-block;width:100%;text-align:center;font-size:12px;");
            cellCost_element1.setAttribute("id", "MainContent_lblCost" + New_RowNo);
            cellCost_element1.setAttribute("onmouseover", "telerikDemo.onClientMouseOver(this, '0')");
            cellCost.appendChild(cellCost_element1);

            // Status
            var cell7 = row.insertCell(9);
            cell7.setAttribute("style", "width:75px; ");
            var C7_element1 = document.createElement("span");
            C7_element1.setAttribute("style", "display:inline-block;width:75px;text-align:center;");
            C7_element1.setAttribute("id", "MainContent_lblStatus" + New_RowNo);
            cell7.appendChild(C7_element1);

            // Crew
            var cell14 = row.insertCell(10);
            cell14.setAttribute("style", "width:75px; ");
            var C14_element1 = document.createElement("span");
            C14_element1.setAttribute("style", "display:inline-block;width:75px; text-align:center;");
            C14_element1.setAttribute("id", "MainContent_lblCrew" + New_RowNo);
            cell7.appendChild(C14_element1);



            var cell12 = row.insertCell(11);
            cell12.setAttribute("style", "width:20px;");
            var C12_EID = "MainContent_More" + New_RowNo + "_A_" + New_RowNo;  //"MainContent_Image10_A_10"
            var C12_element2 = document.createElement('a');
            C12_element2.setAttribute("id", C12_EID);
            var linkText = document.createElement('img');
            linkText.setAttribute("src", "Images/more.png");
            C12_element2.appendChild(linkText);
            C12_element2.title = "More";
            C12_element2.setAttribute("style", "display:inline-block;height:15px;width:15px;");
            var more_click = "ShowMore('More" + New_RowNo + "_A_" + New_RowNo + "','" + New_RowNo + "','" + New_RowNo + "','A_" + New_RowNo + "','A_','1');"
            C12_element2.setAttribute("onclick", more_click);
            cell12.appendChild(C12_element2);

            var cell13 = row.insertCell(11);
            cell13.setAttribute("style", "width:20px;");

            // Invoice_Check
            var cell8 = row.insertCell(13);
            cell8.setAttribute("style", "width:20px;");
            var C8_element2 = document.createElement("input");
            C8_element2.type = "checkbox";
            C8_element2.setAttribute("style", "width:20px;");
            C8_element2.setAttribute("id", "MainContent_chbInv" + New_RowNo);
            var blur = "OfferChange('chbInv" + New_RowNo + "','" + New_RowNo + "','" + New_RowNo + "','A_" + New_RowNo + "','A_');";
            C8_element2.setAttribute("onclick", blur);
            C8_element2.setAttribute("name", "ctl00$MainContent$chbInv" + New_RowNo);
            cell8.appendChild(C8_element2);

            var C8_element2_dummy = document.createElement("input");
            C8_element2_dummy.type = "text";
            C8_element2_dummy.setAttribute("style", "border: 0px solid !important; border-radius: 0px !important; color: #333333; height: 0.1px; opacity: 0.00; padding: 0px !important; width: 0.1px;");
            C8_element2_dummy.setAttribute("id", "MainContent_txtAddRowDummies" + New_RowNo);
            C8_element2_dummy.setAttribute("onblur", "onRowDoubleClick_Add_Row('txtAddRowDummies" + New_RowNo + "','" + New_RowNo + "');");
            C8_element2_dummy.setAttribute("name", "ctl00$MainContent$txtAddRowDummies" + New_RowNo);
            cell8.appendChild(C8_element2_dummy);

            document.getElementById("MainContent_" + id).removeAttribute("onBlur");
            DemoArborGold.JobInformation1.AddRow(New_RowNo.toString());
            // Commented by Shiv on 28-02-2014 
            //var clickButton = document.getElementById(C11_EID);
            // Added by Shiv on 28-02-2014 

            var clickButton = document.getElementById('<%=btnDumies_Add_Roe_Fire.ClientID %>');
            clickButton.click();
        }

        $(document).ready(function ()
        {
            $("input[name*='txtAddRowDummies']").live('blur', function ()
            {
                try
                {
                    $(this).parent('td').parent('tr').next().find('input[name*="txtItem"]').focus();
                }
                catch (ex)
                {

                }
            });
        });
.
行上的函数双击添加行(id,行号) { var New_RowNo=(parseInt(RowNo)+parseInt(1)); var table=document.getElementById(“”); var rowCount=table.rows.length; var row=table.insertRow(rowCount); setAttribute(“类”、“网格行”); //删除 var cell11=行insertCell(0); cell11.setAttribute(“样式”,“宽度:20px;”); var C11_element2=document.createElement(“输入”); var C11_EID=“MainContent_Image”+New_RowNo+“”+New_RowNo+“_A_u”+New_RowNo;/“MainContent_Image 10_A_10” var C11_EName=“ctl00$MainContent$Image”+New_RowNo+“”+New_RowNo+“_A_”+New_RowNo;/“ctl00$MainContent$Image10_A_10” C11_element 2.type=“image”; C11_element2.setAttribute(“src”、“Images/collapse.gif”); C11_元素2.setAttribute(“标题”、“删除”); C11_element2.setAttribute(“id”,C11_EID.toString()); var click=“返回窗口.确认('您确定要删除此项目');”; C11_element2.setAttribute(“单击”,单击); C11_element2.setAttribute(“名称”,C11_EName); //var blur=“onRowDoubleClick_添加_行('图像“+新_行+”、“+新_行+”);”; //C11_element2.setAttribute(“onblur”,blur); var Check_Delete=“Check_Delete('Image“+New_RowNo+”);”; //C11_element2.setAttribute(“onmousedown”,选中删除); 第11单元。附加子元素(C11_元素2); //Iten数 var cell1_1=行插入单元格(1); cell1_1.setAttribute(“样式”,“宽度:25px;右填充:5px;”); var C1_element1_1=document.createElement(“输入”); C1_元素1_1.type=“文本”; C1_元素1_1.setAttribute(“样式”,“宽度:100%”); C1_element 1_1.setAttribute(“id”、“main content_txtItem”+新行号); var blur=“getItemNoValue('txtItem“+New_RowNo+”,“+New_RowNo+”,“+New_RowNo+”,“+New_RowNo+”,'A_“+New_RowNo+”;”; C1_元素1_1.setAttribute(“onblur”,blur); C1_element 1_1.setAttribute(“名称”、“ctl00$MainContent$txtItem”+新行号); 单元格1_1.附加子元素(C1_元素1_1); . . . . //注释 var cell10=行insertCell(4); setAttribute(“样式”,“宽度:120px;右填充:5px;”); //Shiv于2013年2月12日添加,以在主网格上设置编辑器 var C10_element2=document.createElement(“textarea”); C10_element 2.type=“text”; C10_element2.setAttribute(“样式”,“宽度:100%;高度:30px;可见性:可见;”); C10_element2.setAttribute(“id”、“MainContent_txtNote_New”+New_RowNo); C10_element2.setAttribute(“类”、“setFCkeditor”); C10_element2.setAttribute(“文本模式”、“多行”); var blur=“NoteChange('txtNote“+New_RowNo+”、“+New_RowNo+”、“+New_RowNo+”、“+New_RowNo+”、'A"”); C10_元素2.setAttribute(“onblur”,blur); C10_element2.setAttribute(“名称”、“ctl00$MainContent$txtNote”+新行号); 单元格10.附加子元素(C10_元素2); //数量 var cell4=行插入单元格(5); cell4.setAttribute(“样式”,“最小宽度:10px;右填充:5px;”); var C4_element2=document.createElement(“输入”); C4_element 2.type=“text”; C4_element2.setAttribute(“样式”,“宽度:95%;”); C4_元素2.setAttribute(“id”、“MainContent_txtQty”+新行号); var blur=“OrderQtyChange('txtQty“+New_-RowNo+”、“+New_-RowNo+”、“+New_-RowNo+”、“+New_-RowNo+”、'A"”); C4_元素2.setAttribute(“onblur”,blur); C4_element2.setAttribute(“名称”、“ctl00$MainContent$txtQty”+新行号); 第4单元附属物(C4_元素2); var C4_exID=“MainContent\u filteredtextboxetter\u txtQty”+新行号; var C4_exPlant=“MainContent_txtQty”+新的\u RowNo; Sys.Application.add_init(函数(){ $create(Sys.Extended.UI.FilteredTextBoxBehavior, { “有效卡”:“1234567890。”, “id”:C4_exID }, null,null,$get(C4_外植体)); }); //时辰 var cellHour=行插入单元格(6); setAttribute(“样式”,“最小宽度:10px;右填充:5px;”); var cellHour_element2=document.createElement(“输入”); cellHour_element 2.type=“text”; cellHour_element2.setAttribute(“样式”,“宽度:95%;”); cellHour_element2.setAttribute(“id”、“main content_txtHour”+New_RowNo); var blur=“OrderQtyChange('txtQty“+New_-RowNo+”、“+New_-RowNo+”、“+New_-RowNo+”、“+New_-RowNo+”、'A"”); cellHour_element2.setAttribute(“onblur”,blur); cellHour_element2.setAttribute(“名称”、“ctl00$MainContent$txtHour”+新行号); cellHour.appendChild(cellHour_element2); var cellHour_exID=“MainContent\u filteredtextboxetter\u txtHour”+新增行号;