摘要:
在web页面中我们会碰到这样一种情况,如:<form id="form1" runat="server" > <div> <textarea id="TextArea1" cols="20" rows="2"></textarea> <input id="Text1" type="text" /> </div> </fo... 阅读全文
摘要:
$.get(url, function(data) { $(txtId).val(data); });如果当url不变,经常的去ajax请求的时候,会得不到最新的返回值。$.ajaxSetup({ cache: false });所以要把ajax缓存设置成false。 阅读全文