摘要: 1.双边矩bug 解决办法: display:inline 或这个浮动元素之前再设一个浮动元素2.IE div height:100% 解决办法 html,body{ margin:0; height:100%; } (IE6下html默认就是100%高度,body则不是)3.IE6(Q) IE7(Q) IE8(Q) 中给 IMG 元素设置 'padding' 无效4.line-height 不同浏览器下表现不一样,用偶数 尽量用数字不带单位5.firefox按钮文字垂直居中input::-moz-focus-inner{ border: none;padding: 0;}/* 阅读全文
posted @ 2012-09-09 01:00 zhs5 阅读(217) 评论(3) 推荐(0) 编辑
摘要: 分区助手绿色版刚开始操作失败是 D盘太小了,后来把D盘扩大,再扩大C盘http://www.rsdown.cn/soft/stgj/cpgj/14783.html 阅读全文
posted @ 2012-08-16 15:53 zhs5 阅读(181) 评论(0) 推荐(0) 编辑
摘要: editor_config.js 中配置 根目录URL="/ueditor/";var fixedImagePath = URL + "uploadfile/",fixedFilePath = "/uploadfile/";fileUp.asp 中修改response.Write "{'state':'"& state & "','url':'"& msg &"','fileType 阅读全文
posted @ 2012-08-15 12:24 zhs5 阅读(586) 评论(0) 推荐(0) 编辑
摘要: 两个内容的轮换简单实现 (各个<li></li>标记中的内容为要轮换的内容)html内容<div class="zhongdian"><ul><li><img src='http://www.cnblogs.com/UploadFiles/Arcitle/201253014551491347.jpg'><h3><a href='ReadNews.asp?rid=661&t=self'>重庆钢铁集团</a></h3>重 阅读全文
posted @ 2012-08-14 12:43 zhs5 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 三个文件:qqconnect.asp 1 <%@codepage=65001%> 2 <% 3 '================================== 4 '=类 名 称:QqConnet 5 '=功 能:QQ登录 For ASP 6 '=作 者:㊣FireFox㊣ 7 '=Q Q: 63572063 8 '=日 期:2012-01-02 9 '================================== 10 '转载时请保留以上内容!! 11 Class QqConnet 12 Priv 阅读全文
posted @ 2012-05-22 11:33 zhs5 阅读(1422) 评论(0) 推荐(1) 编辑
摘要: function kset(key, value) { console.log("key" + key + "value" + value); window.localStorage.setItem(key, value);}function kget(key) { console.log(key); return window.localStorage.getItem(key);}kset("expenseItem",JSON.stringify(list)); //存list(json)到localStorage// alert( 阅读全文
posted @ 2012-05-22 01:46 zhs5 阅读(480) 评论(0) 推荐(0) 编辑
摘要: 在一个listview中$("#datalist").empty();$("#datalist").append(strHtml);$("#datalist").listview("refresh");但是如果strHtml中是表单 不能有jqm的表单效果 后来用$("#datalist").trigger("create"); 就可以了radio checkbox的刷新 $("input[type='radio'][name=iscount][va 阅读全文
posted @ 2012-05-22 01:40 zhs5 阅读(741) 评论(0) 推荐(0) 编辑
摘要: function uploadshow(typeid) { // Retrieve image file location from specified source navigator.camera.getPicture(uploadPhoto, function(message) { alert('没有获取到照片'); }, { quality: 50, destinationType: navigator.camera.DestinationType.FILE_URI, // sourceType: navigator.camera.PictureSourceType.P 阅读全文
posted @ 2012-05-21 22:30 zhs5 阅读(1614) 评论(0) 推荐(0) 编辑