上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: 在jquery的高版本(1.7-1.9)提示“String”未定义,稍低版本提示“Date”未定义错误解决办法:1、找到你发生错误的代码(即执行那条代码时发生的错误)2、使用setTimeout(function(){发生错误的代码},0)完美解决,不信你试试,O(∩_∩)O哈哈~ 阅读全文
posted @ 2013-01-25 11:14 yuejin 阅读(2125) 评论(3) 推荐(3) 编辑
摘要: compilation 的 assemblies 元素(ASP.NET 设置架构)示例:<configuration> <system.web> <compilation> <assemblies> <add assembly="System.Data, Version=1.0.2411.0,Culture=neutral,PublicKeyToken=b77a5c561934e089"/> </assemblies> </compilation> </system.web>&l 阅读全文
posted @ 2013-01-25 10:09 yuejin 阅读(21899) 评论(0) 推荐(2) 编辑
摘要: jquery获取iframe里的js函数:$("#myiframe")[0].contentWindow.func();说明:iframe的ID为:myiframeiframe的js函数为:func() 阅读全文
posted @ 2013-01-24 18:43 yuejin 阅读(3819) 评论(0) 推荐(0) 编辑
摘要: HTTP 错误 500.19 - Internal Server Error无法访问请求的页面,因为该页的相关配置数据无效。解决办法1:注册IIS1、“开始”->“运行”->cmd2、输入: cd C:\Windows\Microsoft.NET\Framework\v2.0.50727(如果为4.0是为:C:\Windows\Microsoft.NET\Framework\v4.0.30319)(注:.net framework安装目录,根据实际安装目录为准)3、输入: aspnet_regiis -i 阅读全文
posted @ 2013-01-22 22:58 yuejin 阅读(304) 评论(0) 推荐(0) 编辑
摘要: <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无闪动的div层固定</title><style type="text/css">body{margin:0px; padding:0px;}#fixedBottom{position:fixed; 阅读全文
posted @ 2013-01-22 22:44 yuejin 阅读(2955) 评论(0) 推荐(0) 编辑
摘要: 在web.config增加如果还不行,请检查一下“处理程序映射”,里面是否有“ExtensionlessUrlHandler-Integrated-4.0”,如果没有,请注册.net4.0在运行里输入:C:\Windows\Microsoft.NET\Framework\v4.0.30319\a... 阅读全文
posted @ 2013-01-19 12:20 yuejin 阅读(38799) 评论(6) 推荐(5) 编辑
摘要: window.screenTop:网页doby部分上(浏览器的菜单栏、地址栏、工具栏等所占的高度+浏览器顶部边缘隔屏幕可视区域顶部的高度):window.screenLeft:网页正文部分左(同上理)//以上IE支持window.screen.height:屏幕分辨率的高window.screen.width:屏幕分辨率的宽window.screen.availHeight:屏幕可用工作区高度window.screen.availWidth:屏幕可用工作区宽度 阅读全文
posted @ 2013-01-18 17:48 yuejin 阅读(199) 评论(0) 推荐(0) 编辑
摘要: <html style="overflow:hidden"><head> <title>jqueryuejin简易后台框架设计</title> <script src="/Scripts/jquery-1.7.1.min.js"></script> <script type="text/javascript"> $(function () { layoutrezise(); AutoHeight(); }) function layoutrezise( 阅读全文
posted @ 2013-01-15 18:16 yuejin 阅读(5654) 评论(0) 推荐(0) 编辑
摘要: filter: Alpha(opacity=10); /* IE */ -moz-opacity:0.1; /* FF 主要是为了兼容老版本的FF */opacity:0.1; /* FF */filter: Alpha(opacity=10); -moz-opacity:0.1; opacity:0.1;记得加上背景颜色 阅读全文
posted @ 2013-01-14 16:10 yuejin 阅读(8168) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> $(function(){ $(document).keypress(function (e) { if (e.keyCode == 13) //...........code....... }) });</script> keyCode:keycode 8 = BackSpace BackSpacekeycode 9 = Tab Tabkeycode 12 = Clearkeycode 13 = Enterkeycode 16 = Shift_Lkeycode 17 = Co... 阅读全文
posted @ 2013-01-13 15:15 yuejin 阅读(22092) 评论(0) 推荐(2) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页