摘要:
//one $('.class').on("click",function(){ alert('one') }); //相当于$('.class').bind("click",function(){……}); //two $(document).on("click",'.class',function(){ alert('two'); }); //相当于$('.class')... 阅读全文
摘要:
header('HTTP/1.1 200 OK'); // ok 正常访问 header('HTTP/1.1 404 Not Found'); //通知浏览器 页面不存在 header('HTTP/1.1 301 Moved Permanently'); //设置地址被永久的重定向 301 header('Location: http://www.ithhc.cn/'); //跳转到一个新的地址... 阅读全文