摘要:
客户端: 服务端: 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... 阅读全文
摘要:
网页上所有元素都有一个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(); ... 阅读全文