摘要:
删除workspace中.metadata\.plugins\org.eclipse.core.runtime\.settings目录下 org.eclipse.wst.server.core.prefs org.eclipse.jst.server.tomcat.core.prefs 两个文件,r 阅读全文
摘要:
file switch workspace other 阅读全文
摘要:
[csharp] view plain copy <span style="white-space:pre"> </span> HtmlWeb webClient = new HtmlWeb(); string _url = "http://news.baidu.com/"; HtmlAgility 阅读全文
摘要:
string hostName = System.Net.Dns.GetHostName();//本地计算机的 DNS 主机名的字符串 IPHostEntry hostInfo = Dns.GetHostEntry(hostName); var ip = hostInfo.AddressList[2 阅读全文
摘要:
需要用到: 1.System.Net.Mail; 2.QQ邮箱的POP3/SMTP服务码 QQ邮箱的POP3/SMTP服务码获取方法: 1.打开qq邮箱: 2.进入设置页面--》账户:(往下翻)开启服务POP3/SMTP服务,QQ邮箱会给一个POP3/SMTP服务码保存下来 代码: [csharp] 阅读全文
摘要:
NPOI是POI项目的.NET版本。POI是一个开源的Java读写Excel、WORD等微软OLE2组件文档的项目。 NPOI能帮助开发者在没有安装微软office的情况下读写Excel,支持的文件格式包括xls,doc,ppt等。 分享地址:https://yunpan.cn/cuJyHTEjzd 阅读全文
摘要:
快速响应是所有UI都需要注意的一点,研究证明:当延迟超过100毫秒,用户就能感受到界面的卡顿。然而出于对手指触摸滑动的区分,移动端页面对于触摸事件会有300毫秒的延迟,导致多数用户感觉移动设备上基于html的web应用界面响应速度慢。 例1:在手机端运行该页面,点击按钮,会明显感觉比较慢 [html 阅读全文
摘要:
public static string GetIP() { string str = ""; //穿过代理服务器取远程用户真实IP地址: if (System.Web.HttpContext.Current.Request.ServerVariables["HTTP_VIA"] != null) 阅读全文
摘要:
页面滚动条滚动到div位置时执行if里的事件 阅读全文
摘要:
页面输入框会出现被软键盘挡住的问题: 解决方法:获取input点击事件设置body高度 [html] view plain copy $('input').bind('click',function(e){ var $this = $(this); e.preventDefault(); setTi 阅读全文
摘要:
ios获取软键盘完成事件,通过判断input的onBlur事件即可 阅读全文
摘要:
live()事件 [html] view plain copy $('a').live('click', function() { alert("That tickles!") }); [html] view plain copy [html] view plain copy live事件Jq把al 阅读全文
摘要:
JQuery中live()、delegate()、on()事件都能给新增元素绑定事件,原理就是用了事件委托。 实例: 给id为div的元素绑定一个click委托,如果冒泡上来的元素是P元素就会执行alert("xxx"); [html] view plain copy <!DOCTYPE html> 阅读全文
摘要:
getdate(4292488) 使用方法传入目标时间与当前时间差(时间戳) [html] view plain copy function getdate(period) { var yearLevelValue = 365 * 24 * 60 * 60 * 1000; var monthLeve 阅读全文
摘要:
<!DOCTYPE HTML> <html> <head> <meta charset=UTF-8> <title>SCROLL</title> <style type="text/css"> </style> <script type="text/javascript"> var goToWher 阅读全文
摘要:
在地址栏输入 [html] view plain copy data:text/html,<h1 style='color:red' >Hello, world!</h1> [html] view plain copy [html] view plain copy 浏览器会执行你的html代码,效果 阅读全文
摘要:
获取元素top传入即可 [html] view plain copy contentTop($("#top8").offset().top); [html] view plain copy [html] view plain copy 阅读全文
摘要:
IOS8.3(都可以跳转到下载页) safari可呼起APP 手机百度可呼起APP QQ不能呼起APP QQ空间可呼起APP 微信不能呼起APP IOS9.2.1(都可以跳转到下载页) safari可呼起APP,但在呼起之前会弹出提示,需要选择“open”之后才会呼起 手机百度可呼起APP QQ空间 阅读全文
摘要:
安卓: [html] view plain copy window.AndroidWebView.方法名(参数); [html] view plain copy [html] view plain copy [html] view plain copy window.AndroidWebView.p 阅读全文
摘要:
[html] view plain copy <script type="text/javascript"> var mql = window.matchMedia("(orientation: portrait)"); if(mql.matches) { alert("竖屏"); } else { 阅读全文