我知道在花了很多时间思考之后真的会发生什么...所以如果我禁用<asp:UpdatePanel...
代码我的jQuery插件代码正在工作,否则它不执行$(document).ready(function () {...
内部的代码你应该处理这件事吗?
$(document).ready(function () {
$('[id*="txtName"]').charCount({
allowed: 300,
warning: 15,
counterText: 'Characters left: '
});
............
// ASPX:
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="always">
<ContentTemplate>
<!-- rest of the code .... -->
..........