摘要: //获取当前滚动条的位置 var long1 = $("#dd2").scrollTop(); //获取滚动条的长度 var long2=$('#dd2').height(); //alert(h); //设置滚动条的位置 // document.getElementById('dd2').scro 阅读全文
posted @ 2018-04-13 18:30 Python研究者 阅读(9817) 评论(0) 推荐(0) 编辑
摘要: function GetPercent(num, total) { num = parseFloat(num); total = parseFloat(total); if (isNaN(num) || isNaN(total)) { return "-"; } return total <= 0 阅读全文
posted @ 2018-04-13 18:30 Python研究者 阅读(3616) 评论(0) 推荐(1) 编辑
摘要: typeof map[xixi] != "undefined" 阅读全文
posted @ 2018-04-13 16:50 Python研究者 阅读(1678) 评论(0) 推荐(0) 编辑
摘要: var map = {}; map['key1'] = 1; map['key2@'] = 2; console.log(map['key1']);//结果是1. console.log(map['key2@']);//结果是2. //如果遍历map for(var prop in map){ if 阅读全文
posted @ 2018-04-13 10:13 Python研究者 阅读(858) 评论(0) 推荐(0) 编辑
摘要: <script> var base64EncodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";var base64DecodeChars = new Array( -1, -1, -1, -1, 阅读全文
posted @ 2018-04-13 09:24 Python研究者 阅读(943) 评论(0) 推荐(0) 编辑
摘要: <audio src="我的好兄弟.mp3" controls="controls" id="audio" style="width:500px; max-height:40px; background:#ccc"> 您的老牛已经拉不动破车了,赶紧换了吧,想听中国好声音么?</audio> js: 阅读全文
posted @ 2018-04-13 09:18 Python研究者 阅读(18897) 评论(0) 推荐(0) 编辑
摘要: <script language="javascript"> str="2,2,3,5,6,6"; //这是一字符串 var strs= new Array(); //定义一数组 strs=str.split(","); //字符分割 for (i=0;i<strs.length ;i++ ) { 阅读全文
posted @ 2018-04-13 09:18 Python研究者 阅读(180345) 评论(0) 推荐(2) 编辑