摘要: jQuery中ajax请求有三种操作方式$.get() $.post() $.ajax()get和post(是对$.ajax的封装)//不传递数据$.get("./16.php",function(msg){ alert(msg);});//给服务器传递数据$.get("./16.... 阅读全文
posted @ 2014-07-19 17:06 自学it技术 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 载入事件onload $(function(){}); $().ready(function(){}); $(document).ready(function(){});设置事件 $('div').mouseover(function(){}); $('div').focusin(func... 阅读全文
posted @ 2014-07-19 15:10 自学it技术 阅读(174) 评论(0) 推荐(0) 编辑