摘要:
$.ajax({ type:”GET”, data:”userName=myData”, url:”Destination.aspx”, dataType:”html”, success:function(msg){ $(‘show’).html(msg); } }); 阅读全文
摘要:
$('#id').bind('事件名',function(){//}); //=========================== //判定按键 $('#tbInput').bind('keypress', function(e) { var e = window.event ? window.event : e; if (e.keyCode == 39) { alert("39"); } })... 阅读全文