Archive for the ‘JavaScript’ Category

浏览器对象模型BOM结构图

浏览器对象模型 BOM 结构图

HTMLEncode

function HTMLEncode(text) {  
    return  text.replace(/\”/g, ‘&quot;’).replace(/</g, ‘&lt;’).replace(/>/g, ‘&gt;’).replace(/\’/g, ‘&#039;’);
}

Return top