会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Jones_dd
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
2017年9月13日
jQuery知识点
摘要: javaScript 页面加载 windonw.onload = function(){ alert("js页面加载"); } jQuery 页面加载 //标签选择器 $("标签名") $(document).ready(function (){ // alert("jQuery页面加载"); //
阅读全文
posted @ 2017-09-13 10:02 毫无代价
阅读(168)
评论(0)
推荐(0)
2017年9月9日
JavaScript实现轮播图(隔3秒显示一张图)
摘要: <!DOCTYPE html><html> <head> <script> var time; function init(){ //获取div里面的东西 time=setInterval("show()",3000); setInterval("show1()",3000); } var num=
阅读全文
posted @ 2017-09-09 23:06 毫无代价
阅读(1618)
评论(0)
推荐(0)
JavaScript实现图片轮播图
摘要: <!DOCTYPE html><html> <head> <script > var time; function init(){ //设置定时操作 time=setInterval("show()",0); //3秒执行一次 setInterval("show1()",1000); } var n
阅读全文
posted @ 2017-09-09 23:05 毫无代价
阅读(277)
评论(0)
推荐(0)
JavaScript实现隔行换颜色
摘要: <!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script> window.onload = function() { //获取表 var tb = document.getElementById("tabl
阅读全文
posted @ 2017-09-09 23:00 毫无代价
阅读(281)
评论(0)
推荐(0)
JavaScript实现省市联动
摘要: <!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script> // 定义二维数组: var arr = new Array(4); arr[0] = new Array("哈尔滨","齐齐哈尔","大庆","
阅读全文
posted @ 2017-09-09 22:57 毫无代价
阅读(351)
评论(0)
推荐(1)
JavaScript实现全选和全不选
摘要: <!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script> function selectAll(num){ //获取下面的四个复选框 var res = document.getElementsByCla
阅读全文
posted @ 2017-09-09 22:52 毫无代价
阅读(246)
评论(0)
推荐(0)
2017年9月2日
关键字
摘要: protected(是类内部,同一个包,就是同一个包里才可以访问) public(同一个包,类里,包外都可以访问) private(只在本类可以访问) final(修饰的变量不能被改变) static()
阅读全文
posted @ 2017-09-02 19:57 毫无代价
阅读(130)
评论(0)
推荐(0)
上一页
1
2
3
4
公告