摘要: 客户端: 服务端: public partial class DetailForm : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { string str = Request.QueryString["title"]; if (str != null && str != "") { Res... 阅读全文
posted @ 2013-08-04 22:01 hometown 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 网页上所有元素都有一个style对象,借此可以获得网页上任何事物的高度和宽度。document.getElementById("rockImg").style.height浏览器大小改变触发onresize事件。alert(typeof document.cookie); //string //写Cookie function writeCookie(name, value, days) { var expires = ""; if (days) { var date = new Date(); ... 阅读全文
posted @ 2013-08-04 10:24 hometown 阅读(154) 评论(0) 推荐(0) 编辑