mount

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2011年12月9日

摘要: 1 1.<html> 2 2. <head> 3 3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 4 4. <title>点击弹出窗口网页背景变暗且不可点的效果(div实现)</title> 5 5.<style type="text/css"> 6 6.a { 7 7. color: #000; 8 8. font-size: 12px; 9 9. text-de 阅读全文
posted @ 2011-12-09 10:39 http://guoyinfeng.info/ 阅读(726) 评论(0) 推荐(0) 编辑

摘要: 1 window.onload = function() 2 { 3 refreshList(); 4 } 5 6 function refreshList(){ 7 var result = eval("("+'{!JSONAccount}'+")"); 8 //alert("result: " + result); 9 ... 阅读全文
posted @ 2011-12-09 08:49 http://guoyinfeng.info/ 阅读(292) 评论(0) 推荐(0) 编辑

摘要: 1 var dragging = false; 2 var test; 3 var mouseY; 4 var mouseX; 5 6 window.onload = function() 7 { 8 test = document.getElementById("idname"); 9 test.onmousedown = down; 10 test.onmousemove = move; 11 document.onmouseup = up; 12 test.style.position = "relative"; 13 ... 阅读全文
posted @ 2011-12-09 08:47 http://guoyinfeng.info/ 阅读(186) 评论(0) 推荐(0) 编辑