上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 40 下一页
摘要: 代码如下: <script> //定时器 异步运行 function hello(){ alert("hello"); } //使用方法名字执行方法 var t1 = window.setTimeout(hello,1000); var t2 = window.setTimeout("hello() 阅读全文
posted @ 2017-09-06 17:15 baby孔祥超 阅读(808) 评论(0) 推荐(0) 编辑
摘要: 最近整理Easyui控件的时候,对Easyui的DateBox控件和DateTimeBox控件进行了梳理,而我之所以将EasyUI的DateBox控件和DateTimeBox控件放在一起,归为一类,是因为这两个控件没有什么区别,如果你非得说这两个控件有区别,也无非是DateTimeBox控件后面除了 阅读全文
posted @ 2017-09-06 13:33 baby孔祥超 阅读(301) 评论(0) 推荐(0) 编辑
摘要: <html><script>function a(){document.write("屏幕分辨率为:"+screen.width+"*"+screen.height+"<br />"+"屏幕可用大小:"+screen.availWidth+"*"+screen.availHeight+"<br /> 阅读全文
posted @ 2017-09-03 18:44 baby孔祥超 阅读(273) 评论(0) 推荐(0) 编辑
摘要: var url = $("#email_kong").val(); //url=mail.qq.com url = "http://"+url; //url=http://mail.qq.com window.open(url); 阅读全文
posted @ 2017-09-03 16:26 baby孔祥超 阅读(1741) 评论(0) 推荐(0) 编辑
摘要: 首先定义css样式: 复制代码代码如下: @media print { .noprint { display: none;color:green } } 对于不想打印的内容只用在标签中加上 class="noprint"即可,打印的时候客户也不会看到页面任何变化。 打印时调用 window.prin 阅读全文
posted @ 2017-09-03 12:33 baby孔祥超 阅读(3778) 评论(0) 推荐(0) 编辑
摘要: // 点击按钮 <span onClick="gotoTop('2','2');return false;"></span>// js <script type="text/javascript">function gotoTop(acceleration,stime) { acceleration 阅读全文
posted @ 2017-09-03 10:55 baby孔祥超 阅读(709) 评论(0) 推荐(0) 编辑
摘要: // 点击打印的图标 <div class="dcsc"><img src="${rootUrl }images/pdf-icon.png" id="file_pdf_kong" class="center-block img-responsive" title="下载PDF"></div> // 阅读全文
posted @ 2017-09-03 10:43 baby孔祥超 阅读(7444) 评论(0) 推荐(0) 编辑
摘要: var muiDiv = document.getElementById('mui-content'); createInput('img','text',imgSrc,muiDiv); function createInput(inputName, inputType, inputValue, a 阅读全文
posted @ 2017-09-02 17:49 baby孔祥超 阅读(7601) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-09-01 17:00 baby孔祥超 阅读(4) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) throws UnsupportedEncodingException { /* * 获取jsapi_ticket * */ //获取access_token String accessTokenUrl = "https: 阅读全文
posted @ 2017-09-01 16:24 baby孔祥超 阅读(390) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 40 下一页