我在.js页面中使用了函数“ functionRemainCount()”。我想在.aspx页面内调用。我曾经使用过这样的代码,但是由于在.js文件中使用了函数名,因此它给出了错误,即函数名在当前上下文中没有退出,但该上下文正确了。那么如何调用函数呢?
请告诉我。

我的代码是这样的:

protected void Page_Load(object sender, EventArgs e)
{
    txtNote.Attributes.Add("OnKeyDown", functionRemainCount());
            txtNote.Attributes.Add("OnKeyUp", functionRemainCount ());
}

最佳答案

尝试:

txtNote.Attributes.Add("OnKeyDown", "functionRemainCount()");
txtNote.Attributes.Add("OnKeyUp", "functionRemainCount()");

09-18 05:07