我正在尝试从 asp 链接按钮调用 jquery 函数。这是我的链接按钮html:
<div style="padding-left:75px">
<asp:LinkButton ID="lbAddCC" runat="server" ClientIDMode="Static" OnClick="ShowCCControls()" Text="Add CC"></asp:LinkButton>
</div>
这是我的jQuery函数:
function ShowCCControls() {
$('#lblCC').show();
$('#txtCC').show();
} //end ShowCCControls()
当我尝试构建时,我收到错误:
ASP.internal_email_aspx 不包含“ShowCCControls”的定义,并且找不到接受“ASP.internal_email_aspx”类型的第一个参数的扩展方法“ShowCCControls”(您是否缺少 using 指令或程序集引用?)
我使用复选框在另一个页面上工作:
<asp:CheckBox ID="chkNew" TabIndex="8" runat="server" Text="New Tank" OnClick="SetNewTankControls()"
ClientIDMode="Static" />
有人看到问题吗?谢谢
这是所有的javascript:
<script type="text/javascript" language="javascript">
//document.ready is used for jquery, waits until the doc is ready to be manipulated
$(document).ready(function () {
HideControls();
}); //end document.ready
function HideControls() {
$('#lblCC').hide();
$('#txtCC').hide();
$('#lblBCC').hide();
$('#txtBCC').hide();
} //end HideControls()
function ShowBCCControls() {
$('#lblBCC').show();
$('#txtBCC').show();
} //end ShowBCCControls
function ShowCCControls() {
$('#lblCC').show();
$('#txtCC').show();
} //end ShowCCControls()