-3

任何人都可以帮助我,因为我需要在 vb.net 代码中编写 Javascript 吗?我的意思是我是 vb.net 编码的新手,我有一个从 web 服务动态创建的表,对于该表,我需要添加 javascript 代码中的排序功能,我需要将此脚本添加到动态创建的表我试过这个:

     oSB.Append("table.RegisterStartupScript('SCRIPTNAME', '<script language='javascript'>function tname(){alert('kk')};</script>')")

但它似乎根本不起作用。

我也试过这个

     'oSB.Append("<script>$('[id^=tname] th').live('click',function(event){ alert('hello')}</script>")

我的ajax函数:

     $.ajax({
        type: "POST",
        url: "Service1.asmx/GetRecipie",
        contentType: "application/json; charset=utf-8",

        data: "{'sDB':'" + sDB + "'}",
        dataType: "json",
        success: OnGetMemberSuccess,

        failure: function (errMsg) {
            $('#errorMessage').text(errMsg);  //errorMessage is id of the  div
        }

    });
    function OnGetMemberSuccess(data, status) {

        xistr = data.d.split(',');
        $("#MemberDetails").html(data.d);
        $('input[type=button]').attr('disabled', false);
    }

} 

表由此代码(webservice)创建:

     oSB.Append("<table id= '" + table_id + "' class='sortable' ><thead><tr><th class=border id='tname' >" + "Name" + "<img src='next.gif'/></th><th class=border>" + "Duration" + "</th><th class=border>" + "State" + "</th><th class=border>" + "Party" + "</th><th class=border>" + "Year" + "</th></tr></thead>")
     sNameValue = dr("sName").ToString
        sDurValue = dr("sDuration").ToString
        sStateValue = dr("sState").ToString
        sPartyValue = dr("sParty").ToString
        sYearValue = dr("sYear").ToString
        oSB.Append("<tbody id=tbodyid'>")
        ' oSB.Append("<tr id='trid'>")
        oSB.Append("<tr>")
        oSB.Append("<td id='tdid' class=border1>")
        oSB.Append(sNameValue)
        oSB.Append("</td>")

        oSB.Append("<td class=border1>")
        oSB.Append(sDurValue)
        oSB.Append("</td>")

        oSB.Append("<td id='td_state' class=border1>")
        oSB.Append(sStateValue)
        oSB.Append("</td>")

        oSB.Append("<td class=border1>")
        oSB.Append(sPartyValue)
        oSB.Append("</td>")

        oSB.Append("<td class=border1>")
        oSB.Append(sYearValue)
        oSB.Append("</td>")

        oSB.Append("</tr>")
        oSB.Append("</tbody>")
    End While
    dr.Close()
    con.Close()
    oSB.Append("</table>")
    'MsgBox(table.ToString)
    Debug.Print(oSB.ToString)

有人可以告诉我哪里错了吗?

再次欢呼

4

3 回答 3

2

您不能直接在 vb.net 代码中编写 javascript。但是,您可以从 vb.net 代码注册和触发 javascript。

尝试这个

Page.RegisterClientScriptBlock("key","<script>alert('Hello World');</script>");

试试这个 vb 代码块:

Dim strScript As String = "<script>"
strScript += "alert('Hello, Pavan');"
strScript += "</script>"
Page.RegisterClientScriptBlock("strScript", strScript)
于 2013-01-09T06:10:42.237 回答
1

您不能在 vb.net 代码中编写 javascript 代码。您可以在 vb.net 代码中添加/嵌入 javascript 代码以在客户端上执行。通常您需要在 aspx 页面中编写 javascript 代码。您可以使用 ScriptManager.RegisterClientScriptBlock从 vb 代码注册脚本。

于 2013-01-09T06:00:12.250 回答
1

我可以看到你正在使用

$('[id^=tname] th').live('click'...

然而,从 jQuery 文档:

从 jQuery 1.7 开始,不推荐使用 .live() 方法。使用 .on() 附加事件处理程序。旧版本 jQuery 的用户应该使用 .delegate() 而不是 .live()。 http://api.jquery.com/live/

除此之外,TH 是一个非常糟糕的事件目标。因为您需要单击 TH,而不是其中的文本。否则您的事件将不会触发。

请参阅此处的标记:http: //jsfiddle.net/4eXkT/2/

那应该行得通。

实际上,您不需要将任何 javascript 嵌入到您的 vb.net 代码中。只需在您的页面中包含一个 javascript 文件并使用 jQuery 的.on()事件处理程序。如果您必须从您的 Web 服务管理 javascript,请使用另一个端点来返回要根据您的 Web 服务生成的代码使用的 javascript。

如果您必须使用最新 jQuery 以外的任何其他版本,请参阅上面提供的文档。

于 2013-01-09T07:40:14.843 回答