0

我试图从一个按钮调用一个函数,但是当我按下按钮时,它表示没有声明该名称的函数。

这是我的按钮代码:

<asp:TextBox ID="DateOutTxt" runat="server" Width="80px"></asp:TextBox><asp:ImageButton
                    ID="ImageButton5" runat="server" BorderStyle="None" ImageUrl="~/icons/vwicn063.gif"
                    OnClientClick="PopupPicker(DateOutTxt, 250, 250);" Width="21px" /></td>

这是我要调用的函数:

<script language ="javascript" type ="text/javascript">
    function PopupPicker(ctl, w, h) {
        var PopupWindow = null;
        settings = 'width=' + w + ',height=' + h + ',location=no,directories=no, menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,dependent=no';
        PopupWindow = window.open(<%= getServerName.getserverName("/Quoteman/DatePicker.aspx?Ctl=") %>);
    PopupWindow.focus();
}
</script>

我目前在标签底部有脚本标签,但我尝试将它放在标签中和标签下方。我似乎找不到问题所在。

语言是 ASP.Net 和 Javascript。那里还有一个对 VB.Net 函数的调用。

4

1 回答 1

0

确保脚本的可用性,将脚本放在 head 标记中或在呈现 html 元素之前。您以错误的方式传递当前对象,使用它而不是 DateOutTxt

改变

OnClientClick="PopupPicker(DateOutTxt, 250, 250);"

OnClientClick="PopupPicker(this, 250, 250);"

将 scriptlet 放在 window.open 中,用引号括起来。

function PopupPicker(ctl, w, h) {
    var PopupWindow = null;
    settings = 'width=' + w + ',height=' + h + ',location=no,directories=no, menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,dependent=no';
    PopupWindow = window.open('<%= getServerName.getserverName("/Quoteman/DatePicker.aspx?Ctl=") %>');
    PopupWindow.focus();
}
于 2013-07-26T11:33:45.337 回答