0

我目前正在尝试执行已预先声明的功能。该函数附加到一个按钮,但是当我单击该按钮时,我收到错误消息“PopupPicker 尚未声明”。

下面是我的函数的副本以及尝试执行该函数的按钮。

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=") %> + ctl,'DatePicker',settings);
    PopupWindow.focus();
}

这是按钮。

<td style="width: 120px">
    <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>
<td colspan="2" style="width: 100%">
    <asp:TextBox ID="DateInTxt" runat="server" Width="80px"></asp:TextBox>
    <asp:ImageButton ID="ImageButton1" runat="server" BorderStyle="None" ImageUrl="~/icons/vwicn063.gif" OnClientClick="PopupPicker('DateInTxt', 250, 250);" Width="21px" />
</td>
<td colspan="1" style="width: 100px">
</td>

语言是 javascript 和 html,其中有一些 VB.Net。

4

1 回答 1

1

确保在inside <head></head>inside <body></body>声明函数。像这样:

<html>
  <head> ... </head>
  <body>
    ...
    <script>
      function PopupPicker(ctl,w,h) { ... }
    </script>
  </body>
</html>

除了评论或标签下方,您不应放置任何内容。这是无效的。</html></body>

如果您使用 jQuery,请确保您的函数没有在 jQuery 的 $(document).ready() 中声明,而是在它之外。像这样:

<script>
  function PopupPicker(ctl,w,h) { ... }
  $(document).ready(function(){..})
</script>
于 2013-07-25T10:26:50.323 回答