jquery を使用して asp .net カレンダー コントロールを切り替えたい非常に単純なサンプル プロジェクトを作成しました。なぜそれが機能しないのか、誰でも指摘できますか。ASP .NET Web アプリケーション用に提供されたサンプル プロジェクトのマスター ページに変更を加えていません。
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
CodeBehind="Default.aspx.cs" Inherits="WebApplication5._Default" %>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
<script type="text/javascript" src="scripts/jquery-1.4.1.min.js">
</script>
<script language="javascript" type="text/javascript">
// <![CDATA[
function Button1_onclick() {
alert( $('<%=Calendar1.ClientID%>'));
$('<%=Calendar1.ClientID%>').toggle();
}
// ]]>
</script>
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<h2>
Welcome to ASP.NET!
</h2>
<p>
To learn more about ASP.NET visit <a href="http://www.asp.net" title="ASP.NET Website">www.asp.net</a>.
</p>
<input id="Button1" type="button" value="button" onclick="return Button1_onclick()" />
<asp:Calendar ID="Calendar1" runat="server"></asp:Calendar>
<p>
You can also find <a href="http://go.microsoft.com/fwlink/? LinkID=152368&clcid=0x409"
title="MSDN ASP.NET Docs">documentation on ASP.NET at MSDN</a>.
</p>
</asp:Content>