在asp.net中从JS文件调用javascript函数

时间:2012-11-14 11:23:05

标签: c# javascript asp.net

我在我的页面中引用了我的javascript,如下所示

<script src="JScript1.js" type="text/javascript"></script>

这些是我在该脚本文件中的功能

function multiplication(txtQuantity) {
var weight = document.getElementById(txtQuantity).value;
}
 function f(sender, args) {
args.IsValid = false;
var gridview = document.getElementById("<%=Gridview1.ClientID%>");
var txt = gridview.getElementsByTagName("textarea");
for (i = 0; i < txt.length; i++) {

    if (txt[i].id.indexOf("TextBox1") != -1) {

        if (txt[i].value == '') {
            args.IsValid = false;
        }
        else {
            args.IsValid = true;
        }

    }
}
}

function f1(sender, args) {
args.IsValid = false;
var gridview = document.getElementById("<%=Gridview1.ClientID%>");
var txt = gridview.getElementsByTagName("textarea");
for (i = 0; i < txt.length; i++) {

    if (txt[i].id.indexOf("TextBox2") != -1) {

        if (txt[i].value == '') {
            args.IsValid = false;
        }
        else {
            args.IsValid = true;
        }

    }
}
 }

我想从我的代码后面调用这些函数,我也希望将该函数分配给自定义验证器

我尝试了一些如下事情但没有工作

<asp:CustomValidator ID="custValCountry" runat="server" ValidationGroup="Country"
                        ValidateEmptyText="true" ControlToValidate="TextBox1" ClientValidationFunction="javascript:f"
                        ErrorMessage="Other is required"></asp:CustomValidator>

我的RowDataBound事件发生在我写下如下,这也无法正常工作

protected void Gridview1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            TextBox txt = (TextBox)e.Row.FindControl("TextBox1");
            Page.ClientScript.RegisterClientScriptBlock(txt.GetType(), "onBlur", "multiplication('" + txt.ClientID + "')");
            //Page.ClientScript.RegisterClientScriptBlock(, "Script", "alert('Records Successfuly Saved!');", true);
           // txt.Attributes.Add("onBlur", "return javascript:multiplication('" + txt.ClientID + "');");
            //TextBox txt1 = (TextBox)e.Row.FindControl("TextBox2");
            txt1.Attributes.Add("onBlur", "return javascript:multiplication('" + txt1.ClientID + "');");
        }
    }

有人可以帮助我

2 个答案:

答案 0 :(得分:2)

静态JavaScript文件通常不会通过ASP.NET提供,因此这行不起作用:

var gridview = document.getElementById("<%=Gridview1.ClientID%>");

为网格使用固定ID并直接指定:

var gridview = document.getElementById('my-grid');

<asp:GridView ID="my-grid" ClientIDMode="Static" runat="server" ...>

或者想出一些寻找身份证的方法。

另请注意,此功能几乎毫无价值:

function multiplication(txtQuantity) {
var weight = document.getElementById(txtQuantity).value;
}

你得到的重量然后什么都不用?

答案 1 :(得分:0)

您需要意识到您的javascript函数正在客户端的浏览器中运行,而不是在运行代码的服务器上运行。如果需要从后面的代码中调用函数,则需要在后面的代码中创建等效函数。