摘要: // addEvent/removeEvent written by Dean Edwards, 2005 // with input from Tino Zijdel // http://dean.edwards.name/weblog/2005/10/add-event/ function addEvent(element, type, handler) { //为每一个事件处理函... 阅读全文
posted @ 2010-08-16 01:06 rock506 阅读(848) 评论(1) 推荐(0) 编辑
摘要: String.prototype.stripHTML = function(){ var reg = //g; return this.replace(reg,""); }; var str = "hello world!"; alert(str.stripHTML()); //outputs "hello world!" 阅读全文
posted @ 2010-08-16 00:01 rock506 阅读(594) 评论(0) 推荐(0) 编辑