2

我正在使用 jquery ui 选项卡和工具提示,它运行良好。这是 jquery-ui 选项卡的代码

$(function() {
  $( "#tabs" ).tabs();
  $(document).tooltip(); 
});   

我写了另一个函数,我想从按钮点击事件后面的代码中调用它

function setDiv(type){
    alert(type);         
}

这是我的代码隐藏功能。

protected void btnNext_Click(object sender, EventArgs e)
{
    pnlResult.Visible=True;
    ScriptManager.RegisterClientScriptBlock(Page, typeof(Page), "script type='text/javascript' language='javascript'",
    "setDiv('highlight')();", true);
}

问题是当我单击 btnNext 按钮时,提示正在显示突出显示。之后我在 aspx 页面上收到对象预期错误,并且错误点在

<div id="tabs-1">(div used for creating tabs)

这是我的 aspx 页面

<div id="tabs">
    <ul>
        <li><a href="#tabs-1">Nunc tincidunt</a></li>
        <li><a href="#tabs-2">Proin dolor</a></li>
        <li><a href="#tabs-3">Aenean lacinia</a></li>
    </ul>
<div id="tabs-1">//Here's where i am getting the error
    <p>
        <asp:Panel ID="pnlResult" runat="server" Visible="false">
            <div id="divResult"  runat="server">
                <span id="spIcon"   style="float:left;margin-left:3px;"></span>
                Successfully inserted
            </div>
        </asp:Panel>
        <table style="width:50%" id="tbl" runat="server" >
            <tr>
                <td>
                   Your Name:
                </td>
                <td>
                    <input id="name" title="Enter your name here" />
                </td>
            </tr>
            <tr>
                <td >
                    <span class="ui-icon ui-icon-alert"  style="float:left;margin-left:3px;"></span>
                    <input type="button" id="btnSubmit" value="Submit" />
                </td>
            </tr>
        </table>
    </p>
</div>
<div id="tabs-2">
    <p>Tab2.</p>
</div>
<div id="tabs-3">
    <p>Tab3.</p>
    <p>Tab is placed.</p>
</div>
</div>
4

1 回答 1

1

您在后面的代码中构建的脚本格式错误,试试这个:

ScriptManager.RegisterClientScriptBlock(
    Page, 
    typeof(Page), 
    "setDiv",
    "<script type='text/javascript'>setDiv('highlight');</script>",
     false);
于 2013-03-07T12:00:47.230 回答