摘要:     $.ajax({ type:”GET”, data:”userName=myData”, url:”Destination.aspx”, dataType:”html”, success:function(msg){ $(‘show’).html(msg); }   }); 阅读全文
posted @ 2010-04-01 15:29 [秦时明月] 阅读(201) 评论(0) 推荐(0) 编辑
摘要: $('#id').bind('事件名',function(){//}); //=========================== //判定按键 $('#tbInput').bind('keypress', function(e) { var e = window.event ? window.event : e; if (e.keyCode == 39) { alert("39"); } })... 阅读全文
posted @ 2010-04-01 15:18 [秦时明月] 阅读(227) 评论(0) 推荐(0) 编辑