摘要: 阅读全文
posted @ 2010-07-21 12:58 [秦时明月] 阅读(149) 评论(0) 推荐(0) 编辑
摘要: $("div").data("a",{a:1123,b:34});       alert($("div").data("a").a);   注意:express为一个dom元素,不能使随便写的.存放多个数据时,用json格式表示.   移除... 阅读全文
posted @ 2010-07-20 11:26 [秦时明月] 阅读(147) 评论(0) 推荐(0) 编辑
摘要: jQuery(expression,[context])  // $("div > p"); 表达式expression和css一样,div>p 表示div下的所有子元素p,div p div下的所有后代元素p content:可选) 作为待查找的 DOM 元素集、文档或 jQuery 对象。 jQuery(elements) 将一个或多个DOM元素转... 阅读全文
posted @ 2010-07-20 11:20 [秦时明月] 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2010-07-18 19:33 [秦时明月] 阅读(156) 评论(0) 推荐(0) 编辑
摘要: [代码] 阅读全文
posted @ 2010-07-06 12:55 [秦时明月] 阅读(454) 评论(13) 推荐(0) 编辑
摘要: C C++ C# JAVA F# 汇编 阅读全文
posted @ 2010-07-03 09:00 [秦时明月] 阅读(225) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1问题描述:dll的路径必须在静态常量(const),所以是无法通过一般方法把c:\\FirstDll.dll作为变量传入的.下面介绍的方法鉴于:http://www.cnblogs.com/wuwei2150/archive/2008/07/15/1228346.html但原处有小处错误,余在此修改,并优化. [DllImport("c:\\FirstDll.dll", E 阅读全文
posted @ 2010-06-09 17:05 [秦时明月] 阅读(823) 评论(2) 推荐(1) 编辑
摘要:     $.ajax({ type:”GET”, data:”userName=myData”, url:”Destination.aspx”, dataType:”html”, success:function(msg){ $(‘show’).html(msg); }   }); 阅读全文
posted @ 2010-04-01 15:29 [秦时明月] 阅读(202) 评论(0) 推荐(0) 编辑
摘要: $('#id').bind('事件名',function(){//}); //=========================== //判定按键 $('#tbInput').bind('keypress', function(e) { var e = window.event ? window.event : e; if (e.keyCode == 39) { alert("39"); } })... 阅读全文
posted @ 2010-04-01 15:18 [秦时明月] 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 注意:都要在Page_PreInit使用stylesheettheme和 theme.这 两个用法基本一样,就是执行的优先级不一样. 一般引用主题和皮肤方式有这有这两种:1.  Theme="mytheme" 只在页面上定义Theme时,页面只使用Theme的主题样式,不会使用页面上用户再定义的样式 2. StyleSheetTheme="mytheme" 当定义了StyleSheetTheme... 阅读全文
posted @ 2010-03-29 13:09 [秦时明月] 阅读(318) 评论(0) 推荐(0) 编辑