发布时间:2014-10-24 15:17:28
在html5中,文本框,也就是input, type为text,或者password,新增了一个属性placeholder,也就是占位符,以下是firefox浏览器下的表现形式当输入的时候,占位符就会消失这个属性非常好用,因为有这个必要html5才会因素这个属性,然而在IE下,就没有这效果,以下是IE9的表现为了这个效果,我写了一个jQuery的插件,让IE.........【阅读全文】
发布时间:2014-10-23 15:26:39
文字显示位置分别为:水平方向(align),垂直方向(valign)水平方向即左中右:left(左对齐)center(居中)RIGHT(右对齐)垂直方向即靠顶和靠底.top(靠顶)、bottom(靠底)等。水平方向即左中右的代码:<p align=left><font style=font:15pt face=黑体 color=fff000>向左对齐</font></P><p align=CENTER><f.........【阅读全文】
发布时间:2014-10-23 15:03:27
<marquee behavior="scroll" direction=right width="90%" height="100" scrollamount="2" scrolldelay="50" ><a href=链接地址 target='_blank'><img src='图片地址'width="100" height="100" border='0' </a><a href=链接地址 target='_blank'><img src='图片地址'width="100" height="100" .........【阅读全文】
发布时间:2014-10-22 16:29:51
我的Ubuntu本来是自动启动图形界面的,可是却启动不了显示:Loading, pease wait...Kinit: name_to_dev_t(/dev/disk/by-uuid/104ad992-ca26-4337-90a1-17f14a0ea667)= sda8(8,8)kinit: No resume image, doing normal boot...解决方法:一般是用 swap 分区保存系统休眠恢复的镜像,所以 /etc/initramfs-tools/conf.d/r.........【阅读全文】
发布时间:2014-10-21 14:57:35
<html> <head> <title>get file input full path</title> <script language='javascript'> function getFullPath(obj) { if(obj) &nbs.........【阅读全文】