发布时间:2013-09-26 13:58:04
大家常见的肯定都是 这种用法.其实,不仅可以在body 上用它还支持多个HTML标签.用法如下:onload事件当一个页面或是一张图片加载完成时被触发。所支持的HTML标签:, , , , , , 实例:第一种方法 代码如下:......【阅读全文】
发布时间:2013-09-25 10:45:41
用PHP下载CSS文件中的图片的代码点击(此处)折叠或打开<?php//note 设置PHP超时时间set_time_limit(0);//note 取得样式文件内容$styleFileContent = file_get_contents('images/style.css');//.........【阅读全文】
发布时间:2013-09-24 09:36:09
旗子图片 代码如下:(function($) {var jSelect = $(".jsSelect");$(jSelect).find("li:first").hover(function(){$(".s").css("background","url(images/68_60.png) 54px 0px no-repeat");h=$(this).parent("ul").find("li").length;$(this).parent("ul").css("height",28*h)$(this).siblings("li:not(.s)")..........【阅读全文】
发布时间:2013-09-24 09:33:56
点击(此处)折叠或打开$(function(){$(".child_tab tr:last-child").find("td").css({borderBottom:'none'})//获得文本框对象var t = $(".amount-input");//数量增加操作$(".amount-up").click(function(e){v.........【阅读全文】
发布时间:2013-09-23 13:25:36
php保留两位小数并且四舍五入 代码如下:$num = 123213.666666;echo sprintf("%.2f", $num);php保留两位小数并且不四舍五入 代码如下:$num = 123213.666666;echo sprintf("%.2f",substr(sprintf("%.3f", $num), 0, -2));http://www.unitymanual.com/sitemap.xmlphp进一法取整 代码如下:echo c.........【阅读全文】