javascript继承

简单的javascript继承:

/* Simple JavaScript Inheritance
 * By John Resig http://ejohn.org/
 * MIT Licensed.
 */
// Inspired by base2 and Prototype
(function(){
  var initializing = false, 
  fnTest = /xyz/.test(function(){xyz;}) ? /\b_super\b/ : /.*/;
 
  // The base Class implementation (does nothing)
  this.Class = function(){};
 
  // Create a new Class that inherits from this class
  Class.extend = function(prop) {
    var _super = this.prototype;
   
    // Instantiate a base class (but only create the instance,
    // don't run the init constructor)
    initializing = true;
    var prototype = new this();
    initializing = false;
   
    // Copy the properties over onto the new prototype
    for (var name in prop) {
      // Check if we're overwriting an existing function
      prototype[name] = typeof prop[name] == "function" &&
        typeof _super[name] == "function" && fnTest.test(prop[name]) ?
        (function(name, fn){
          return function() {
            var tmp = this._super;
           
            // Add a new ._super() method that is the same method
            // but on the super-class
            this._super = _super[name];
           
            // The method only need to be bound temporarily, so we
            // remove it when we're done executing
            var ret = fn.apply(this, arguments);        
            this._super = tmp;
           
            return ret;
          };
        })(name, prop[name]) :
        prop[name];
    }
   
    // The dummy class constructor
    function Class() {
      // All construction is actually done in the init method
      if ( !initializing && this.init )
        this.init.apply(this, arguments);
    }
   
    // Populate our constructed prototype object
    Class.prototype = prototype;
   
    // Enforce the constructor to be what we expect
    Class.prototype.constructor = Class;
 
    // And make this class extendable
    Class.extend = arguments.callee;
   
    return Class;
  };

})();

 

使用继承:

var Person = Class.extend({
  init: function(isDancing){
  this.dancing = isDancing;
  },
  dance: function(){
  return this.dancing;
  }
});

var Ninja = Person.extend({
  init: function(){
    this._super( false );
  },
  dance: function(){
    // Call the inherited version of dance()
    return this._super();
  },
  swingSword: function(){
    return true;
  }
});

 

在html页面里的使用方法:

<html>
<head>
 <script src="./jquery-latest.js"></script>
 <script src="./simple_init.js"></script>
 <script src="./my_extend.js"></script>
</head>
<body> 
 <div id="test" height="100px" width="100px"></div>
</body>
<footer>
</footer>
</html>

<script>
 var n = new Ninja();
 // console.log(n.dance()); // => false
 // n.swingSword(); // => true
</script>

ajax ‘\n\r’ 传递

从数据库传回来的换行符 通过ajax传递到前台好像会出问题,今天早做frasers 的company的时候就遇到了,因为在remarks回车之后会生成换行符 post提交到后台好像也不会转义所以直接存储到了数据库里这样就坑爹了导致后来再post数据回来去做edit的时候ajax页面返回不回来,我现在解决办法可能有些笨 但是目前是可以起到效果。

前端处理:

function replace_br(str){
        return str.replace(/<br \/>/g,"\r\n");
}

新添加:

function str_replace(str){
        var new_str = str.replace(/\"/g,"\\\"");
        new_str = new_str.replace(/\n/g,"<br \/>");
        new_str = new_str.replace(/\r/g,"<br \/>");
        new_str = new_str.replace(/\r\n/g,"<br \/>");
        return new_str;
    }

 

 

后端处理:

function replace_nr($str){
        $new_str = str_replace("\r","<br />",$str);
        $new_str = str_replace("\n","<br />",$new_str);
        $new_str = str_replace("\n\r","<br />",$new_str);
        return $new_str;
}

打印时候页面的style

打印时候页面的style

<style media="print">
.Noprint{display:none;}
.PageNext{page-break-after: always;}
@page {size: 8.3in 11.7in; size: portrait; marks:none; margin: 0.5in;}
@media print {
 p, h4, ul, ol, td, a { font-size: 8pt; }
 h1 { font-size: 9pt; } 
 h2 { font-size: 9pt; } 
 h3 { font-size: 9pt; } 
 h5 { font-size: 9pt; }
}
</style>

mysql的空值与NULL的区别

Mysql数据库是一个基于结构化数据的开源数据库。SQL语句是MySQL数据库中核心语言。不过在MySQL数据库中执行SQL语句,需要小心两个陷阱。

  陷阱一:空值不一定为空

  空值是一个比较特殊的字段。在MySQL数据库中,在不同的情形下,空值往往代表不同的含义。这是MySQL数据库的一种特性。如在普通的字段中(字符型的数据),空值就是表示空值。但是如果将一个空值的数据插入到TimesTamp类型的字段中,空值就不一定为空。此时为出现什么情况呢

  我先创建了一个表。在这个表中有两个字段:User_id(其数据类型是int)、Date(其数据类型是TimesTamp)。现在往这个表中插入一条记录,其中往Date字段中插入的是一个NULL空值。可是当我们查询时,其结果显示的却是插入记录的当前时间。这是怎么一回事呢?其实这就是在MySQL数据库中执行SQL语句时经常会遇到的一个陷阱:空值不一定为空。在操作时,明明插入的是一个空值的数据,但是最后查询得到的却不是一个空值。

  在MySQL数据库中,NULL对于一些特殊类型的列来说,其代表了一种特殊的含义,而不仅仅是一个空值。对于这些特殊类型的列,各位读者主要是要记住两个。一个就是笔者上面举的TimesTamp数据类型。如果往这个数据类型的列中插入Null值,则其代表的就是系统的当前时间。另外一个是具有auto_increment属性的列。如果往这属性的列中插入Null值的话,则系统会插入一个正整数序列。而如果在其他数据类型中,如字符型数据的列中插入Null的数据,则其插入的就是一个空值。

  陷阱二:空值不一定等于空字符

  在MySQL中,空值(Null)与空字符(’’)相同吗?答案是否定的。

  在同一个数据库表中,同时插入一个Null值的数据和一个’’空字符的数据,然后利用Select语句进行查询。显然其显示的结果是不相同的。从这个结果中就可以看出,空值不等于空字符。这就是在MySQL中执行SQL语句遇到的第二个陷阱。在实际工作中,空值数据与空字符往往表示不同的含义。数据库管理员可以根据实际的需要来进行选择。如对于电话号码等字段,可以默认设置为空值(表示根本不知道对方的电话号码)或者设置为空字符(表示后来取消了这个号码)等等。由于他们在数据库中会有不同的表现形式,所以数据库管理员需要区别对待。笔者更加喜欢使用空值,而不是空字符。这主要是因为针对空值这个数据类型有几个比较特殊的运算字符。如果某个字段是空字符,数据库中是利用字段名称来代替。相反,如果插入的是空值,则直接显示的是NULL。这跟其他数据库的显示方式也是不同的。

  一是IS NULL 和IS NOT NULL关键字。如果要判断某个字段是否含用空值的数据,需要使用特殊的关键字。其中前者表示这个字段为空,后者表示这个字段为非空。在Select语句的查询条件中这两个关键字非常的有用。如需要查询所有电话号码为空的用户(需要他们补充电话号码信息),就可以在查询条件中加入is not null关键字。

  二是Count等统计函数,在空值上也有特殊的应用。如现在需要统计用户信息表中有电话号码的用户数量,此时就可以使用count函数、同时将电话号码作为参数来使用。因为在统计过程中,这个函数会自动忽略空值的数据。此时统计出来的就是有电话号码的用户信息。如果采用的是空字符的数据,则这个函数会将其统计进去。统计刚才建立的两条记录时,系统统计的结果是1,而不是2。可见系统自动将Null值的数据忽略掉了。

判断NULL用is null  或者 is not null。 sql语句里可以用ifnull函数来处理
判断空字符串‘’,要用 ='' 或者 <>''。sql语句里可以用if(col,col,0)处理,即:当col为true时(非null,及非'')显示,否则打印0

在mac上安装nginx

Before we get started

If you are running Mac OS X Snow Leopard (version 10.6.x), please refer to this article: Nginx on Mac OS X Snow Leopard in 2 Minutes. You may use newer versions of Nginx and the prerequisite software, but whether you choose to do so, or you stick to the packages outlined in the above article, you will get a working Nginx web server on you Mac. Please note that the included build script will still work on Snow Leopard if you don’t want to go the DIY (do it yourself) route.

Overview

This guide will show you how I compiled a basic version of Nginx 1.1.4 on Mac OS X 10.7.1 Lion. The “2 minute” compilation that I mention in the title of this article is when using the script that I provide below. For the DIY folks, I’m breaking down the steps. Variations in your Mac’s specs, and your copy and paste skills may increase the total time to over 2 minutes.

Prerequisites

First, if you do not already have it installed, download and install Xcode from the Mac App Store.

Install PCRE

Nginx requires PCRE – Perl Compatible Regular Expressions to build, I used PCRE version 8.13. In a Terminal, run:

sudo curl -OL h ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.13.tar.gz > /usr/local/src/pcre-8.13.tar.gz

sudo mkdir -p /usr/local/src

cd /usr/local/src

tar xvzf pcre-8.13.tar.gz

cd pcre-8.13

./configure --prefix=/usr/local

make

sudo make install

cd ..

Install Nginx

(You should still be in /usr/local/src, if you followed along from above.)

tar xvzf nginx-1.1.4.tar.gz

cd nginx-1.1.4

./configure --prefix=/usr/local --with-http_ssl_module

make

sudo make install

Start Nginx

Assuming that you have /usr/local in your $PATH (which nginx should say:/usr/local/sbin/nginx), you can simply run:

sudo nginx

Note: to add /usr/local to your $PATH variable, edit or create ~/.profile to include it. For reference, mine currently looks like this:

PATH="/usr/bin:/bin:/usr/sbin:/sbin:/usr/local:/usr/local/sbin:/usr/local/bin:/usr/X11/bin:/opt/X11/bin" – I emphasized in bold type what you need to add to your PATH.

The 2 Minute way, using my script

All of the above instructions, in a nice little script. Save it to your Mac as build-nginx.sh, open a new Terminal window and run:

chmod a+x build-nginx.sh

sudo ./build-nginx.sh

Conclusion

It’s a pretty quick process to get Nginx installed nicely on your Mac, especially if you use my script. This provides a very basic install, but it should get you moving in the right direction. Your feedback is appreciated, so leave a comment below.

mac自带easy_install报错解决办法

mac集成了python的easysetup,使用时却报错

 

[Errno 13] Permission denied: ‘/Library/Python/2.7/site-packages/test-easy-install-4092.write-test’

 

是因为user没有写/Library/Python/2.7/site-packages/目录的权限

 

解决方法

 

sudo chmod +a ‘user:你的用户名 allow add_subdirectory,add_file,delete_child,directory_inherit’ /Library/Python/2.7/site-packages

交通事故处理(以防备用)

够狠(开车的注意:出了交通事故以后) 三不一没有,够狠,也是逼出来的

1:出了事故不要害怕,立刻打110和保险公司.对方伤重请直接播120,你留在现场等交警.

2:不要垫付,如果交警要扣车,你就让他扣,所有他需要的资料都给他.自己步行或者打车上下班,15个工作日你直接去交警大队要验车报告. 不给你,你就立刻即刻马上不要迟疑的到交警同一栋办公楼找到一个叫"行政科"的地方提出行政复议. 然后拿着验车报告去提车.停车场1分钱都不要给他,拿着验车报告你直接就可以拿车,如果对方不给你车,你直接打110,说有人非法扣车. (验车和停车是不要钱的.国家有财拨专门用于这一部分.而且100%的停车场都不是交警自己的,都是外包的.他们都是和交警同穿一条裤子) 这一部分你要是担心自己的新车扣了以后被损,你就提前自己拍照,然后弄一个车衣去盖起来.

3:拿到车该上班就上班,不上班你就休息,千万不要紧张.现在你要做的事情就是不要去医院找打,也不要主动打电话调解. 你等他们联系你,或者交警通知你处理事故.任何关于医院的费用你说我没钱,请和我的保险公司联系.如果告我的话,请连我的保险公司一起告. 你连面都不用出,保险公司就请非常专业的讼棍帮你打官司.最后要赔多少,完全不用自己管.

4:现在你要考虑怎么拿回自己的行驶证. 经过第三点,这个时候对方要嘛接受调解愿意接受交警认责比例,把发票给你,你去报销,然后签字.你拿回行驶证. 经过第三点,对方不愿意调解, 那就告.你放心大胆的开车,有人查你就说有官司在身,行驶证抵押了.时间一长,要么保险公司答应赔,要么伤者自己接受调解. 法院一判下来,你就可以直接拿判决书去找交警,约对方一起去,签字拿回东西.对方不去,你直接找交警,时间长了不给你行驶证你就去行政科闹一下.

5:修车部分很简单,该修的地方.保险勘探现场的时候会有一张现场单,你拿去4S,其他他们会搞定. 6:营养部分,误工部分,你不要私下答应,当地有一份很完整的赔偿标准,对方拿出所有的发票和证明后交警开具调解书,你拿去保险公司都能报. 【三不一没有】原则 :不垫付、 不探望、 不调解、 没有钱(以上根据个人情况变通实施) 转帖

挺好的判断function

protected function set_ajax_return( $flag = 'Y', $result = array() )
 {
  $return = array(
   'flag'   => $flag,
   'result' => $result 
  );
  return json_encode($return);
 }

今天看到QL写的代码里有这个function 所以看了一下 比我直接输出数字来判断要好很多 记录一下以后就用这种方式要正规一些

js replace 全部

js的replace只能替换第一个,

所以如果全部要替换的话得这样写

status_list = status_list.replace(/,/g,'-');

=======================================================================
alert("abacacf".replace('a','9'));
alert("abacacf".replace(/a/g,'9'));
第一个运行的结果 9bacaf 这个只是替换了第一个
第二个运行的结果 9b9c9f 这个能实现js的全部替换功能
其实第二个的意思就是用正则表达式实现全局的替换 g 代表 gobal

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 
<HTML> 
<HEAD> 
<TITLE> New Document </TITLE> 
<META NAME="Generator" CONTENT="EditPlus"> 
<META NAME="Author" CONTENT=""> 
<META NAME="Keywords" CONTENT=""> 
<META NAME="Description" CONTENT=""> 
<script language="javascript" type="text/javascript"> 
String.prototype.replaceAll = stringReplaceAll; 
function stringReplaceAll(AFindText,ARepText){ 
var raRegExp = new RegExp(AFindText.replace(/([\(\)\[\]\{\}\^\$\+\-\*\?\.\"\'\|\/\\])/g,"\\$1"),"ig"); 
return this.replace(raRegExp,ARepText); 
} 
function myreplace(){ 
var content=document.getElementById("content").value; 
var rel_con=content.replaceAll("$name","wwww"); 
document.getElementById("content2").value=rel_con; 
} 
</script> 
</HEAD> 
<BODY> 
<input type="text" id="content" name="contxt" value="$name 客户姓名" />  <input type="button" value="replace" 
onclick="myreplace()"/><br/> 
<input type="text" id="content2" value=""/> 
</BODY> 
</HTML>