2013年1月9日
摘要:
一般是由于模板文件损坏找到normal.dot删除就可以重新打开了。问题是:删了模板没关系么?有空研究一下。
阅读全文
posted @ 2013-01-09 16:05
rorodo
阅读(147)
推荐(0)
摘要:
用360管家删除很多不需要的软件。遇到显示无法清除干净,有残留。然后强力清除!接着问题就来了,QQ空间和弹出新闻框连接IE打不开。估计就是清除的时候删除了IE注册表。在网上找到答案是重新启动几个注册文件。regsvr32 Actxprxy.dll regsvr32 Shdocvw.dll regsvr32 Mshtml.dll regsvr32 Urlmon.dll regsvr32 Msjava.dll其中有几个显示出错!后来发现360自带有一个IE安全卫士有系统修复。用这个修复IE就可以了。霸道的360,好事坏事都有你啊!神奇!
阅读全文
posted @ 2013-01-09 09:03
rorodo
阅读(1581)
推荐(0)
2013年1月7日
摘要:
刚开始才接触php才发现macos还是比较强大了,macbook不仅是时尚达品还很实用哦。--------------他山之石--------------------------http://dancewithnet.com/2010/05/09/run-apache-php-mysql-in-mac-os-x/#php启动Apache有两种方法:打开“系统设置偏好(System Preferences)” -> “共享(Sharing)” -> “Web共享(Web Sharing)”。注意,从Mac OS X从10.8开始取消了 “Web共享(Web Sharing)”。打开“
阅读全文
posted @ 2013-01-07 23:25
rorodo
阅读(13846)
推荐(0)
2013年1月6日
摘要:
Learn CSS Positioning in Ten Stepshttp://www.barelyfitz.com/screencast/html-training/css/positioning/中文翻译:http://paranimage.com/css-position-attribute/All About Floatshttp://css-tricks.com/all-about-floats/ 中文翻译:http://paranimage.com/css-float-attribute/
阅读全文
posted @ 2013-01-06 16:14
rorodo
阅读(179)
推荐(0)
2012年12月13日
摘要:
用户想在开机时显示欢迎登录界面可以在控制版面——用户,里面选择。左图是旧式登录界面,改为右图新登录界面。 步骤:但是由于建立了新的最高权限用户,超级管理员用户就会被系统隐藏。所以admin这个用户通常在欢迎界面中不显示。如果要显示admin用户,需要修改系统注册表。步骤如下运行=》regedit=》HKEY_LOCAL_MACHINE=》SOFTWARA=》Micosoft=》Windows NT=》Winlogon=》SpecialAccounts=》UserList修改UserList中administrator的参数,1为显示,0为隐藏。这里改为1。如果没有administrator,.
阅读全文
posted @ 2012-12-13 10:47
rorodo
阅读(1776)
推荐(0)
2012年12月5日
摘要:
/** * Shadows.js: shadowed text with CSS. * 这个模块定义了一个全局对象叫做阴影shadow * 这个对象包含两个工具程序 *Shadows.add = function(element, shadows) *添加指定的shadows到指定的元素。第一个参数是文档元素或者文档ID。这个元素必须有一个单独的文本节点作为子节点。这个子节点就是要有阴影的文本。 *阴影被一字符串函数定义,这些以后系统解释。 * Shadows.addAll(root, tagname): *通过标签,找出所有指定根节点的后代。如果有任何有shadow属性的元素,就用这个元素和
阅读全文
posted @ 2012-12-05 16:55
rorodo
阅读(212)
推荐(0)
2012年9月29日
摘要:
<html><head><script>function getSelectedText() { if (window.getSelection) { // This technique is the most likely to be standardized. // getSelection() returns a Selection object, which we do not document. return window.getSelection().toString(); } else if (document.getS...
阅读全文
posted @ 2012-09-29 14:56
rorodo
阅读(1073)
推荐(0)
2012年8月23日
摘要:
<script type="text/javascript">/*@cc_on @if (@_jscript) // This code is inside a conditional comment, which is also a // regular JavaScript comment. IE runs it but other browsers ignore it. alert('You are using Internet Explorer); @else*/ // This code is no longer inside a JavaSc
阅读全文
posted @ 2012-08-23 09:25
rorodo
阅读(4486)
推荐(0)
2012年8月7日
摘要:
/** * Module.js: module and namspace utilities * * This is a module of module-related utility functions that are * compatible with JSAN-type modules. * This module defines the namespace Module. */// Make sure we haven't already been loaded 确认没有载入var Module;if (Module && (typeof Module !=
阅读全文
posted @ 2012-08-07 16:15
rorodo
阅读(368)
推荐(0)
2012年7月31日
摘要:
一、用function实现:function Person(name) { this.name = name;}Person.prototype.getName = function() { return this.name;}function Author(name, books) { this.inherit=person; this.inherit(name); this.books = books; }var au=new Author("dororo","Learn much");au.name或者同等效力的:function Person(n
阅读全文
posted @ 2012-07-31 16:00
rorodo
阅读(1746)
推荐(0)