随笔:25 文章:1 评论:8 引用:0
BlogJava 首页 发新随笔
发新文章 联系 聚合管理

ollie时滑板运动中最基本的动作,是滑板入门的必学动作

下面是摘自网络上的how to ollie
posted @ 2006-08-04 13:58 ljwiie 阅读(128) | 评论 (0)编辑 收藏
 
ls          列出文件清单
chown  改变文件所有权限
chgrp    改变文件所属的用户组
chmod  改变文件访问权限模式
cp         拷贝文件
mv        移动文件和对文件更名
ln          建立文件的链接
fine       查找文件
dd        转换拷贝的文件
gzip,gunzip   文件压缩和解压工具
mknod   建立特殊文件
mkdir     建立目录 
rmdir      删除目录
pwd       显示当前的工作目录
tar          文件归档
cat         合并文本文件和显示文本文件
more      分屏显示
which     查找命令所存放的位置
whereis   查找命令保存的位置
posted @ 2006-08-04 11:34 ljwiie 阅读(162) | 评论 (0)编辑 收藏
 
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>JS对象</title>
<script language="javascript">
    function print(){
        document.write("书名为:" + this.name + "<br>");
        document.write("作者为:" + this.author + "<br>");
    }
    
    function book(name,author){
        this.name = name;
        this.author = author;
        this.print = print; //没有括号
    }    
</script>

</head>

<body>
<script language="javascript">
    var c = new book("C语言","谭浩强");
    c.print();
    document.write("<br>");
    
    for(var prop in c){
        document.write(prop + ":" + c[prop] + "<br>");
    }        
    document.write("<br>");
    
    book.prototype.price = 10;
    for(var prop in c){
        document.write(prop + ":" + c[prop] + "<br>");
    }    
</script>

</body>
</html>
posted @ 2006-08-04 11:33 ljwiie 阅读(133) | 评论 (0)编辑 收藏
 

王力宏 - 在梅边
周传雄 - 寂寞沙洲冷

posted @ 2006-08-04 11:29 ljwiie 阅读(139) | 评论 (0)编辑 收藏
 
哈哈,今天刚申请的blog!
posted @ 2006-08-04 11:15 ljwiie 阅读(67) | 评论 (0)编辑 收藏
仅列出标题
共3页: 上一页 1 2 3 
CALENDER
<2025年4月>
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910

常用链接

留言簿(1)

随笔分类

随笔档案

相册

收藏夹

朋友blog

最新评论


Powered By: 博客园
模板提供沪江博客

Contact ljwiie QQ:122050271