上一页 1 ··· 198 199 200 201 202 203 204 205 206 ··· 244 下一页
摘要: 快速响应是所有UI都需要注意的一点,研究证明:当延迟超过100毫秒,用户就能感受到界面的卡顿。然而出于对手指触摸滑动的区分,移动端页面对于触摸事件会有300毫秒的延迟,导致多数用户感觉移动设备上基于html的web应用界面响应速度慢。 例1:在手机端运行该页面,点击按钮,会明显感觉比较慢 [html 阅读全文
posted @ 2017-02-28 10:11 疯子110 阅读(554) 评论(0) 推荐(0) 编辑
摘要: public static string GetIP() { string str = ""; //穿过代理服务器取远程用户真实IP地址: if (System.Web.HttpContext.Current.Request.ServerVariables["HTTP_VIA"] != null) 阅读全文
posted @ 2017-02-28 10:09 疯子110 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 页面滚动条滚动到div位置时执行if里的事件 阅读全文
posted @ 2017-02-28 10:08 疯子110 阅读(2974) 评论(0) 推荐(0) 编辑
摘要: 页面输入框会出现被软键盘挡住的问题: 解决方法:获取input点击事件设置body高度 [html] view plain copy $('input').bind('click',function(e){ var $this = $(this); e.preventDefault(); setTi 阅读全文
posted @ 2017-02-28 10:06 疯子110 阅读(1517) 评论(0) 推荐(0) 编辑
摘要: ios获取软键盘完成事件,通过判断input的onBlur事件即可 阅读全文
posted @ 2017-02-28 10:05 疯子110 阅读(1603) 评论(0) 推荐(0) 编辑
摘要: live()事件 [html] view plain copy $('a').live('click', function() { alert("That tickles!") }); [html] view plain copy [html] view plain copy live事件Jq把al 阅读全文
posted @ 2017-02-28 10:04 疯子110 阅读(401) 评论(0) 推荐(0) 编辑
摘要: JQuery中live()、delegate()、on()事件都能给新增元素绑定事件,原理就是用了事件委托。 实例: 给id为div的元素绑定一个click委托,如果冒泡上来的元素是P元素就会执行alert("xxx"); [html] view plain copy <!DOCTYPE html> 阅读全文
posted @ 2017-02-28 10:02 疯子110 阅读(694) 评论(0) 推荐(0) 编辑
摘要: getdate(4292488) 使用方法传入目标时间与当前时间差(时间戳) [html] view plain copy function getdate(period) { var yearLevelValue = 365 * 24 * 60 * 60 * 1000; var monthLeve 阅读全文
posted @ 2017-02-28 10:01 疯子110 阅读(297) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE HTML> <html> <head> <meta charset=UTF-8> <title>SCROLL</title> <style type="text/css"> </style> <script type="text/javascript"> var goToWher 阅读全文
posted @ 2017-02-28 09:59 疯子110 阅读(1594) 评论(0) 推荐(0) 编辑
摘要: 在地址栏输入 [html] view plain copy data:text/html,<h1 style='color:red' >Hello, world!</h1> [html] view plain copy [html] view plain copy 浏览器会执行你的html代码,效果 阅读全文
posted @ 2017-02-28 09:58 疯子110 阅读(1710) 评论(0) 推荐(0) 编辑
上一页 1 ··· 198 199 200 201 202 203 204 205 206 ··· 244 下一页