摘要:
CSS:需要加上宽度(width:100px)、超出隐藏(overflow:hidden;)、强制在同一行显示(white-space: nowrap;)、省略号(text-overflow:ellipsis;) 阅读全文
摘要:
<!DOCTYPE html><html lang="zh-CN"><head> <meta charset="UTF-8"> <title>.html</title> <style> *{margin:0;padding:0;} .sort{width:50%;margin:20px auto;o 阅读全文
摘要:
json是js里的一种数据格式。var obj={a:15,b:8,c:12} json数组对象 var arr=[15,8,12]; 数组alert(obj.a); 15alert(obj['a']); 15alert(arr[0]); 15 for(var i=0;i<arr.length;i+ 阅读全文