
jQuery
spfLinux
这个作者很懒,什么都没留下…
展开
-
图片抖动轮播
Document #d1 { position: absolute; width:1000px; height:400px; top: 50px; overflow: hidden; } #d1>div{ background: url(img/banner2.png); position: absolute; top: 0px;转载 2017-12-08 16:00:02 · 610 阅读 · 0 评论 -
插件封装2(boot风格)
html1: ... 下拉菜单 Dropdown Action Another action Something else here Separated link html2: new document转载 2017-12-12 16:04:15 · 256 阅读 · 0 评论 -
插件封装(boot风格)
源码:读取并修改元素的属性.tabs{ list-style:none; padding:0;}.tabs a{ text-decoration:none; color:#000; padding:6px 12px; display:inline-block; width:96px; text-align:center;}.tabs>li{ float:转载 2017-12-12 15:24:28 · 410 阅读 · 0 评论 -
跨域请求(jsonp,请求头)
1、简单方式1(jq) Document $.ajax({ type:"get", url:"http://127.0.0.1/weather3.php", dataType:"jsonp" }).then(data=>{ document.write(data); }) <?php @$fun=$_REQUEST["转载 2017-12-13 08:53:47 · 5117 阅读 · 0 评论 -
JQ轮播(左右轮播切换,小圆点hover)
html: Document <ul class="banner-img" data-load="bannerImgs"> <!--转载 2017-12-13 11:50:45 · 772 阅读 · 0 评论 -
JQ原理1
console.log(jQuery); //jQuery对象 console.log($==jQuery); console.log(jQuery.fn); console.log(jQuery.fn==jQuery.prototype); console.log($("btn1")); //类数组对象jQuery中对应源码:(1)console.log(jQue转载 2017-12-06 11:42:13 · 293 阅读 · 0 评论 -
楼层滚动(JQ)
html: Document #header,#f1,#f2,#f3{ width: 80%; height: 500px; background: yellow; margin-left: 10%; margin-top: 50px; } #f1{ background: green; } #f2{ backgr转载 2017-12-14 23:19:36 · 768 阅读 · 0 评论 -
下拉菜单(css、jq)
... .dropdown{width:64px; height:20px;} .dropdown a{ text-decoration:none; color:#000; display:inline-block; } .dropdown>a{ border:1px solid #000; padding:6px 12px; } .dr转载 2017-12-06 17:38:39 · 256 阅读 · 0 评论 -
php分页封装(10行代码搞定分页,优化版本1)
模板html: Document a{ cursor: pointer; color: red; } 编号 用户名 邮箱 手机号 操作 首页 上一页 下一页 尾页 //前端需要改动的地方只有下面几行代码。后端php有3个地方需要原创 2017-12-18 11:45:36 · 1519 阅读 · 0 评论 -
JQ插件封装(jq_ui风格)
源码:读取并修改元素的属性.tabs{ list-style:none; padding:0;}.tabs a{ text-decoration:none; color:#000; padding:6px 12px; display:inline-block; width:96px; text-align:center;}.tabs>li{ float:转载 2017-12-12 15:06:22 · 410 阅读 · 0 评论 -
上传文件(jq,php)
--> 选择本地文件: $("#form1>:button").click(()=>{ console.log("11111"); $.ajax({ type:"post", url:"php/1.php",转载 2017-12-12 10:22:31 · 811 阅读 · 0 评论 -
JQ——tooltip(jq-ui)
Document 按钮 $(document).tooltip();转载 2017-12-11 16:10:29 · 350 阅读 · 0 评论 -
注册验证(简单,jquery)
Document 用户名: 密码: var $txtName=$("form>input[name=uname]"), $txtPwd=$("form>input[name=upwd]"), msgs={ nameErr:"用户名必须介于3~9位之间!", pwdErr:"密码必须介转载 2017-12-09 06:34:02 · 336 阅读 · 0 评论 -
JQ坑1
Document .dropdown{ width: 64px; height: 20px; } .dropdown a{ text-decoration: none; color: #000; display: inline-block; } .dropdown>a{ border: 1px solid #000; padding转载 2017-12-11 09:30:11 · 295 阅读 · 0 评论 -
轮播封装(初步简单封装)
html: Document #banner{ width: 500px; overflow: hidden; } #imgs{ position: relative; width: 3000px; } img{ width: 500px; } #ids{ position: relative; } .ids转载 2017-12-19 22:59:06 · 295 阅读 · 0 评论 -
JQ——日历(jq-ui)
Document $("[name=date]").datepicker({ changeYear:true, changeMonth:true, monthNamesShort: [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12" ], /*minDate:"-转载 2017-12-11 15:01:09 · 532 阅读 · 0 评论 -
JQ——手风琴
Document First Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet. Second Phasellus mattis tincidunt nibh. Third Nam dui e转载 2017-12-11 15:10:04 · 395 阅读 · 0 评论 -
JQ——menu(jq-ui)
Document #menu{ width: 10%; } 111 222 333 444 4_1 4_2 4_3 $("#menu").menu();原创 2017-12-11 15:24:36 · 313 阅读 · 0 评论 -
JQ登录(模态框,jq-ui)
new document #dialog-login{ display: none; } jQueryUI:Widgets —— Dialog 弹出式对话框 我要登录 用户名: 密码名: var $txtName=$("[name=uname]"), $txtPwd=$("[nam转载 2017-12-11 15:56:56 · 873 阅读 · 0 评论 -
JQ标签页(jq-ui)
Document 菜单1 菜单2 菜单3 菜单1的内容 菜单2的内容 菜单3的内容 $("#tabs").tabs();转载 2017-12-11 16:02:29 · 455 阅读 · 0 评论 -
php分页封装(10行代码搞定分页)
html: Document a{ cursor: pointer; color: red; } 编号 用户名 邮箱 手机号 操作 首页 上一页 下一页 尾页 first.onclick=function(){ first原创 2017-12-16 15:09:16 · 1440 阅读 · 0 评论