
jQuery
文章平均质量分 79
小神奇
Programming is like having sex. You have to provide a lifetime of support fo.
展开
-
jQuery选择器的总结
jQuery 的选择器可谓之强大无比,这里简单地总结一下常用的元素查找方法 $("#myELement") 选择id值等于myElement的元素,id值不能重复在文档中只能有一个id值是myElement所以得到的是唯一的元素 $("div") 选择所有的div标签元素,返回div元素数组 $(".myClass") 选择使用myClass类的css原创 2017-09-10 20:08:59 · 328 阅读 · 0 评论 -
Angularjs 增删改查1
综合练习 .addUser{ width: 100px;height: 40px;font-size: 18px;background-color: #11C1F3; } var app = angular.module("myApp",["ngRoute"]); //使用config配置路由规则 app.config(["$ro原创 2017-09-20 16:31:09 · 459 阅读 · 0 评论 -
angularJs 增加 删除 排序
var app = angular.module("myApp",[]); app.controller("myCtrl",function($scope){ //添加数据 $scope.bx =[ {id:1234,name:'ipad',price:3400,kc:10}, {id:1244,name:'aphone',price:5400,kc:30},原创 2017-09-21 13:45:50 · 478 阅读 · 0 评论 -
angularjs综合题
Title li{ list-style: none; margin-top: 25px; } .ul2 li{ float: left; margin-left: 15px; } funct原创 2017-09-20 19:45:52 · 427 阅读 · 0 评论