首页 > 代码库 > I should know the content of js
I should know the content of js
阻止事件传播,必须显示,return false;
return exp?confirm():!!alert();
js 定时器,线程,启动,开始,停止。参数传递,使用window;
js扩展:
String.prototype.Trim = String.prototype.trim = function() {
return this.replace(/(^\s*)|(\s*$)/g, "");
};
function StringBuffer() {
this._strings_ = new Array();
}
StringBuffer.prototype.append = function(str) {
this._strings_.push(str);
return this;
};
StringBuffer.prototype.toString = function() {
return this._strings_.join("");
};
Date.prototype.toSimpleString = function() {
return (this.getFullYear() - 2000) + "/" + (this.getMonth() + 1) + "/" + this.getDate() + " " + this.getHours() + ":" + this.getMinutes();
};
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。