/*
* FY Library 1.0
* Copyright(c) 2010 FengYin
* Blog: /
* Date: 2010-3-12 16:10:01
* Update: /p/fyjs/
*/
(function(_w,_d) {
var _FY,$,FY;
_w._FY=_w.$= function(i) {
return new FY(i)
};
FY = function(i) {
= _d.getElementById(i)
};
= {
ready: function(f) {
var l = _w.onload;
if (typeof(l) == "function") {
_w.onload = function() {
l();
f()
}
} else {
_w.onload = f
}
},
html: function(c) {
var g = ,
r = ;
if (c) {
= "";
+= c;
return this
} else {
return r
}
},
val: function(c) {
var g = ,
r = ;
if (c) {
= "";
+= c;
return this
} else {
return r
}
},
text: function(c) {
var g = ,
r = ,
f = ;
if (c) {
r ? = "": = "";
r ? += c: += c;
return this
} else {
return r ? r: f
}
},
show: function(f) {
= "block";
f ? f() : null
},
hide: function(f) {
= "none";
f ? f() : null
},
bind: function(t, f) {
var l = ,
e = ;
e ? ("on" + t,f):(t,f,false)
},
setcookie: function(s) {
var p = new Date();
(() + ( || 24) * 60 * 60 * 1000);
_d.cookie = + "=" + escape() + ";expires=" + () + ';path=/'
},
getcookie: function(n) {
var c = _d.(new RegExp("(^| )" + n + "=([^;]*)(;|$)"));
return c ? unescape(c[2]) : null
},
ajax: function(s) {
var a = _w.ActiveXObject ? new ActiveXObject("") : new XMLHttpRequest();
with(a) {
open("POST", , true);
setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
send();
onreadystatechange = function() {
if (readyState == 4 && status == 200) {
(responseText)
}
}
}
}
}
})(window,document);