上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: 1.你可以切成4个图,或者两个图。如下图   2.代码 html css3,最终效果 阅读全文
posted @ 2010-08-03 18:45 looping 阅读(231) 评论(0) 推荐(0) 编辑
摘要: #test{ color:red; /* 所有浏览器都支持 */ color:red !important;/* Firefox、IE7支持 */ _color:red; /* IE6支持 */ *color:red; /* IE6、IE7支持 */ *+color:red; /* IE7支持 */ color:red\9; /* IE6、IE7、IE8支持 */ color:red\0; /* ... 阅读全文
posted @ 2010-06-28 17:52 looping 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 异常1:not-null property references a null or transient value 解决方法:将“一对多”关系中的“一”方,not-null设置为false (参考资料:http://www.thearcmind.com/confluence/pages /viewpage.action?pageId=212) 异常2:org.hibernate.Transien... 阅读全文
posted @ 2010-06-09 18:31 looping 阅读(749) 评论(0) 推荐(0) 编辑
摘要: .append( function(index, html) ) function(index, html)A function that returns an HTML string to insert at the end of each element in the set of matched elements. Receives the index position of the el... 阅读全文
posted @ 2010-06-04 10:37 looping 阅读(420) 评论(0) 推荐(0) 编辑
摘要: ======有待改进,暂时先这样<script type="text/javascript"> var str ='<div><img src="/uploads/allimg/100429/1_100429134118_1.jpg" /><br />'+'<img src="/uploads... 阅读全文
posted @ 2010-04-29 19:02 looping 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 今天看到一位js大侠的bolg,最新内容主要是关于ECMA-262-3的,实在是太有价值,这里推荐给大家。 ECMA-262大家应该都不陌生吧,陌生就看这里(ECMAScript Language Specification)。要学好js,深入理解ECMA-262肯定是必经之路,那么如何深入理解ECMA-262就是一个要严肃对待的问题,狠功夫肯定是要下的,但是也有一些好的资源可以让我们事半功倍。今... 阅读全文
posted @ 2010-04-15 12:05 looping 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 最近PHP又出了新版本5.3.1,趁着有空也更新到自己的机器上。 版本选择 PHP 5.3 For Windows有4个版本: VC9 x86 Non Thread Safe VC9 x86 Thread Safe VC6 x86 Non Thread Safe VC6 x86 Thread Safe 官网已经注明,VC9的版本是给IIS用的,VC6的版本是给Apache用的。之所以要这样区分... 阅读全文
posted @ 2010-04-08 15:10 looping 阅读(918) 评论(0) 推荐(0) 编辑
摘要: Array.prototype.unique = function () { var r = new Array(); o:for(var i = 0, n = this.length; i < n; i++) { for(var x = 0, y = r.length; x < y; x++) { if(r[x]==this[i]) { continue o; } } r[r.len... 阅读全文
posted @ 2010-03-24 12:08 looping 阅读(234) 评论(0) 推荐(0) 编辑
摘要: function reverseColor(rgbColor) {//205,15,20 // console.log(rgbColor); rgbColor = rgbColor.replace(/\s/g, ""); var arrRGB = new Array(3); if (rgbColor.indexOf("rgb") > -1) { var... 阅读全文
posted @ 2010-03-16 17:52 looping 阅读(264) 评论(0) 推荐(0) 编辑
摘要: Echo The simplest use of echo is to print a string as argument, for example: echo “This will print in the user’s browser window.”; Or equivalently: echo(“This will print in the... 阅读全文
posted @ 2010-03-01 13:06 looping 阅读(236) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页