随笔分类 - 前端框架及对接
如vue,ajax,css
vue+ajax+bootstrap+python实现增删改
摘要:http://www.cnblogs.com/xwwin/p/5816527.html 1 script src= " http://code.jquery.com/jquery.min.js " ></script> 2 <link href="/static/bootstrap/css/boot
阅读全文
jquery笔记
摘要:a=$(.name) 定位class=name 的元素 a.parent() 定位a元素的父节点 a.parents(css表达式) 定位a元素所有的祖先节点,可通过css表达式进行筛选 a.children(css表达式) 定位a元素直接子节点,可通过css表达式进行筛选 a.prev() 定位a
阅读全文
css选择器
摘要:“a.hot” 定位标签为<a>的属性class=hot的元素 “#dol" 定位id=dol的元素 ”input" 定位标签 值为<input>的元素 “input[name="white"] 定位标签值为input 且属性name值为”white"的元素 ”html>body>div" 定位ht
阅读全文