会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
学习资料
博客园
首页
新随笔
联系
订阅
管理
2009年3月20日
为什么css中设置z-index不起作用?(附原因解释和解决办法)
摘要: 之所以转贴这篇文章,是很多朋友比较疑惑z-index这个样式。其实只要先知道以下2点就可以很容易的理解了—— 要想给元素设置z-index样式,必须先让它变成定位元素,再通俗一点说,就是要给元素设置一个postion:relative(或者 absolute或者fixed)样式。 不要给想控制“上、下”的元素设置z-index,而是对他们的父容器设置z-index样式。这一点详细...
阅读全文
posted @ 2009-03-20 17:53 小昊
阅读(3262)
评论(0)
推荐(0)
编辑
asp.net页面事件执行顺序
摘要: using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts...
阅读全文
posted @ 2009-03-20 17:38 小昊
阅读(199)
评论(0)
推荐(0)
编辑
转--在document.getElementById("oDiv").innerHTML="JS执行问题";
摘要: //====================== //此事例中js代码虽被赋值给oDiv,But js is not executed. //====================== "; } } //================================= //Usage exec...
阅读全文
posted @ 2009-03-20 17:36 小昊
阅读(905)
评论(0)
推荐(0)
编辑
JS判断是否数字
摘要: var num = 0;//判断是否数字 var reg = /^\-?([1-9]\d*|0)(\.\d+)?$/; if(!reg.test(order)) { alert('必须输入数字型');}
阅读全文
posted @ 2009-03-20 17:02 小昊
阅读(1193)
评论(0)
推荐(0)
编辑
用游标实现的累计金额问题
摘要: --用游标实现的累计金额问题--声明2个变量declare @id int declare @num floatdeclare @num2 floatdeclare @sum floatCREATE TABLE [dbo].[a] ([id] [int] IDENTITY (1, 1) NOT NULL ,[num] [float] NULL ,[num2] [float] NULL ) ON [...
阅读全文
posted @ 2009-03-20 16:55 小昊
阅读(241)
评论(0)
推荐(0)
编辑
公告