摘要:
<script> var str=" gg o "; 方法一、使用jQuery的$.trim(str)方法,可以去掉前后空格。 方法二、 var result=str.replace(/^\s*/,"");//先去掉前面的空格 var re=result.replace(/\s+$/,""); // 阅读全文
摘要:
success:function(response, status, xhr){ }, error:function(xhr, errorText, errorType){ alert(errorText+":"+errorType); --error:not found alert(xhr.sta 阅读全文
摘要:
javascript中的location.href有很多种用法,主要如下。 self.location.href="/url" 当前页面打开URL页面location.href="/url" 当前页面打开URL页面windows.location.href="/url" 当前页面打开URL页面,前面 阅读全文
摘要:
<!DOCTYPE html><html lang="zh-CN"><head> <meta charset="UTF-8"> <title>.html</title> <style> </style> <script src="jquery-1.7.2.min.js"></script> <scr 阅读全文
摘要:
<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>liechebiao.html</title> <meta name="viewport" content="width=device-width,initial- 阅读全文
摘要:
<!doctype html><html lang="zh-CN"><head> <meta charset="UTF-8"> <title>index.html</title><!--初始化显示,可视窗宽度与设备宽度一致;不允许缩放--> <meta name="viewport" content 阅读全文
摘要:
一、手机浏览器默认为我们做的两件事情:1.页面渲染在一个980px(ios)/640(aniord)的viewport里面(为了排版正确)2、默认缩放 二、<meta name="viewport" content="width=device-width,initial-scale=1,user-s 阅读全文
摘要:
var isAjax=false;$("btn").click(function(){ if(isAjax) return; isAjax=true; setTimeout(function(){ alert(123); isAjax=false;},2000);});刚开始为false,点击之后, 阅读全文
摘要:
$.ajax()是所有ajax方法中最底层的方法,其它的方法都是基于$.ajax()方法的封装。这个方法只需要传一个参数对象{},里面都是键值对。键值对有多个的情况下用逗号分隔,最后一个不要加逗号。data属性值一般用对象键值对的方式data:{a:4,b:5} ajax用的最多的就是表单提交, a 阅读全文
摘要:
<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>flexbox弹性伸缩布局</title> <style> p{width:150px;border:1px solid #000;margin:5px;paddi 阅读全文