JavaScript log operation object instance
使用 Now let's comprehensively use the knowledge learned to realize an instance of the JavaScript log operation object. What we need is these files:
mylog.js: The main role is to build mylogger constructor, add line, add nodes, and css control. LD.js: The main function is to formulate rules for scripts and strings, construct namespaces and retrieve objects based on Id and className. Test.js: The main function is to add events to the form and test the availability of some functions in mylog. Log.html: Used to display log objects. The following is the code of each file: test.js[javascript] view plaincopyprint?//Add a load event to the window objectLD.addEvent(window,'load',function(){
LD.log .writeRaw('This is raw');
LD.log.writeRaw('This is bold!');
LD.log.header('With a header');
LD.log.write('write source:This is bold!');
for(i in document){
LD.log.write(i);
}
});
//Add a load event to the window object
LD.addEvent(window,'load',function(){
LD.log.writeRaw('This is raw');
LD.log.write('write source:This is bold!');
for(i in document){
LD.log.write(i);
}
} );myLog.js[javascript] view plaincopyprint?// JavaScript Document
//Constructor of myLogger
function myLogger(id){
id=id||"ICLogWindow";
//Reference to log form
var logWindow=null;
var createWindow=function(){ var browserWindowSize = LD.getBrowserWindowSize(); var top=(browserWindowSize.height-200)/2||0; var left =(browserWindowSize.width-200)/2||0;
//Add ID to proceed Logo : top+'px';
logWindow. style.left = left+'px';
logwindow.style.width = '200px';
logwindow.style.head = '200px'; ; O
logwindow.style.padding = '0'; 0 logwindow.style.margin = '0';
logwindow.style.border = '1px solid black'; Window. Style.ListStyle = 'None' ;
logWindow.style.font='10px/10px Verdana, Tahoma, Sans'; ;
//To the log form Add a line in
this.writeRaw=function(message){
use using use using using using out out ‐ ‐ ‐
//Create li DOM node
var li=document.createElement('LI');
using using using using through out using ‐ off off ‐ off ‐ ‐ ‐ ‐ ,
0';
li.style.borderBottom='1px dotted black';
li.style.margin='0';
li.style.color='#000';
Verify message information .
li.appendChild( document.create li.innerHTML!=undefined){
)
//Declare privileged methods in the form of object literals窗 // Add a line to the log window and simply process it to the input content. == 0 ;
return this.writeRaw(message.toString()) ;
message=message.replace(//g,">");
‐ . background-color:black;font-weight:bold;padding:0px 5px;">'+message+'';
return this.writeRaw(message); background-color background-color: black; ']['log'] = new myLogger();
//JavaScript Document
//Constructor of myLogger
function myLogger(id){
id=id||"ICLogWindow";
//Reference of log window
var logWindow=null;
//Create log window
var createWindow=function(){
var browserWindowSize = LD.getBrowserWindowSize();
var top=(browserWindowSize.height-200) /2||0;
var left=(browserWindowSize.width-200)/2||0;
//Use UL
logWindow=document.createElement("UL");
//Add a dom under the document Object UL
//Add ID for identification
logWindow.setAttribute("id",id);
//Control CSS style on the form
logWindow.style.position='absolute';
logWindow.style.top =top+'px';
logWindow.style.left=left+'px';
logWindow.style.width='200px';
logWindow.style.height='200px';
logWindow.style.overflow='scroll ';
logWindow.style.padding='0';
logWindow.style.margin='0';
logWindow.style.border='1px solid black';
logWindow.style.backgroundColor='white';
logWindow.style.listStyle='none';
logWindow.style.font='10px/10px Verdana, Tahoma, Sans';
//Add the form to the page
document.body.appendChild(logWindow);
}
//Add a line to the log form
this.writeRaw=function(message){
// ;
}
//Create dom node of li
var li=document.createElement('LI');
//Control CSS style on the form
li.style.padding='2px';
li. style.border='0';
li.style.borderBottom='1px dotted black';
li.style.margin='0';
li.style.color='#000';
// Verify message Message
//Add text nodes in li.
li.appendChild(
document.createTextNode('Message is undefined')
));
}else if(typeof li.innerHTML!=undefined){
//This is another way of expression
li.innerHTML=message ;
}else{
li.appendChild(
document.createTextNode(message)
);
}
logWindow.appendChild(li);
return true;
};
}
//Declare privileged methods in the form of object literals
//Add a line to the log form and perform simple processing on the input content
myLogger.prototype={
write:function(message){
if(typeof message=='string' && message.length==0 ){
return this.writeRaw('No information entered');
; ;
}else{
return this.writeRaw(typeof message);
}
}
//Convert the greater than and less than sign into HTML tags through regular expression
message=message.replace(//g,">");
return this.writeRaw(message);
},
header:function(message){
message=''+message+'';
return this.writeRaw(message);
}
};
window['LD ']['log'] = new myLogger();LD.js[javascript] view plaincopyprint?// JavaScript Document
if(document.all && !document.getElementById){
document.getElementById=function(id){
return document.all[id];
}
}
if(!String.repeat){
String.prototype.repeat=function(l){
}
}
if(!String.trim){
String.prototype.trim=function(){
}
( Function () {
// Constructing the namespace
Window ['ld'] = {}; Parameters
element = document.getElementById(element);
elements.push(element);
} using elements. parent=parent || document; //Filter the tag and take out all the tag objects
var allTags=(tag == "*" && parent.all) ? parent.all : parent.getElementsByTagName(tag);
var matchingElements=new Array(); replace(/-/g, "\-");
var regex=new RegExp("(^|\s)"+className+ "(\s|$)");
var element; . length;i++){
element=allTags[i];
; func.apply(obj,arguments); 'Ld'] ['bindfunction'] = bindfunction;
Function GetBrowserwindowsize () {
var de = documentelement; In Window.innerWidth
|| (de && de.clientWidth)
|| document.body.clientWidth),
'heigth':(
window.innerHeight
|| (de && de.clientHeight)
|| de && document.body.clientHeight)
}
};
//注册本事件
window['LD']['getBrowserWindowSize']=getBrowserWindowSize;
function addEvent(node,type,listener){
if(!(node=$(node))) return false;
if(node.addEventListener){
node.addEventListener(type,listener,false);
return true;
}else if(node.attachEvent){
node['e'+type+listener]=listener;
node[type+listener]=function(){node['e'+type+listener](window.event);}
node.attachEvent('on'+type, node[type+listener]);
return true;
}
return false;
};
//注册本事件
window['LD']['addEvent']=addEvent;
})();
// JavaScript Document
if(document.all && !document.getElementById){
document.getElementById=function(id){
return document.all[id];
}
}
if(!String.repeat){
String.prototype.repeat=function(l){
return new Array(l+1).join(this);
}
}
if(!String.trim){
String.prototype.trim=function(){
return this.replace(/^s+|+$/g,'');
}
}
(function(){
//Construct the namespace
window['LD']={} ;
function $(){
var elements=new Array();
//arguments The parameter array of the current function. Parameters
for(var i=0;i
if(typeof element=='string'){
element=document.getElementById(element);
}
if(arguments.length==1){
return element;
}
elements.push(element);
}
return elements;
}
//Register namespace
window['LD']['$ ']=$;
function getElementsByClassName(className,tag){
parent=parent || document;
if(!(parent=$(parent))) return false;
//var allTags=document.getElementsByTagName (tag);
//Filter tag and remove all tag objects
var allTags=(tag == "*" && parent.all) ? parent.all : parent.getElementsByTagName(tag);
var matchingElements =new Array();
className=className.replace(/-/g,"\-");
var regex=new RegExp("(^|\s)"+className+ "(\s|$)" );
var element;
for(var i=0;i
if(regex.test(element.className)){
matchingElements.push( element);
}
element); ){
return function() {C func.apply (obj, arguments);
}}};
Window ['ld'] ['bindFunction'] = bindfunction; = document.docmeentelement;
Return {
'width':(
window.innerWidth . clientHeight)
|| de && document.body.clientHeight)
}
};
//Register this event
window['LD']['getBrowserWindowSize']=getBrowserWindowSize;
function addEvent(node,type,listener){
if(!(node=$(node))) return false;
if(node.addEventListener){
node.addEventListener(type,listener,false);
return true;
}else if(node.attachEvent){
node['e'+type+listener]=listener;
node[type+listener]=function(){node['e'+type+listener](window.event);}
node.attachEvent('on '+type, node[type+listener]);
return true;
}
return false;
};
//Register this event
window['LD']['addEvent']=addEvent;
}) (); Running results:
Summary
This small example basically combines what we have learned before, including basic support, object-oriented, prototypes, object literals, this, scope chain and other knowledge Including all the points, it can be regarded as a summary of JavaScript learning.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).
