谁能理解为什么这个简单的代码不起作用:
<script src="/jQuery/jquery-1.7.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function() = {
$('div.FadeOutMessageBox').click(function () { $(this).fadeOut("slow"); });
};
//]]>
</script>
<asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server" />
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div id="FadeOutBox" class="FadeOutMessageBox">
thank you bla bla
click this message to make it go away
</div>
...
它假设在页面上放置一些简单的 div,点击时会淡出。但是当我单击此 div 时没有任何反应。