手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >[JS]点出统计器
[JS]点出统计器
摘要:ff默认不让改statusopera9测试通过ie6测试通过这东西是给统计部门用的,分析用户习惯以改良网站布局。只是写着玩的小东西,所以很多...

ff默认不让改status

opera9测试通过

ie6测试通过

这东西是给统计部门用的,分析用户习惯以改良网站布局。

只是写着玩的小东西,所以很多地方不太理想。

save()方法是保存记录的,没仔细做,应该再加个判断浏览器,然后决定用img还是iframe,以保证request一定能发出去.

onclick()方法是触发事件时执行的

使用方法:

在任意页面中加入

scriptsrc="clickout.js"></script>

最好是放在</body>前面,目的是防止onclick事件覆盖。

Layout 16html,body{margin:0;padding:0}body{font: 76% arial,sans-serif}p{margin:0 10px 10px}a{display:block;color: #981793;padding:10px}div#header h1{height:80px;line-height:80px;margin:0; padding-left:10px;background: #EEE;color: #79B30B}div#content p{line-height:1.4}div#navigation{background:#B9CAFF}div#extra{background:#FF8539}div#footer{background: #333;color: #FFF}div#footer p{margin:0;padding:5px 10px}

div#wrapper{float:left;width:100%}div#content{margin-right: 400px}div#navigation{float:left;width:200px;margin-left:-200px}div#extra{float:left;width:200px;margin-left:-400px}div#footer{clear:left;width:100%}Header

1) Content here. column long long column very long fill fill fill long text text column text silly very make long very fill silly make make long make text fill very long text column silly silly very column long very column filler fill long make filler long silly very long silly silly silly long filler make column filler make silly long long fill very.

very make make fill silly long long filler column long make silly silly column filler fill fill very filler text fill filler column make fill make text very make make very fill fill long make very filler column very long very filler silly very make filler silly make make column column

fill long make long text very make long fill column make text very silly column filler silly text fill text filler filler filler make make make make text filler fill column filler make silly make text text fill make very filler column very

column text long column make silly long text filler silly very very very long filler fill very fill silly very make make filler text filler text make silly text text long fill fill make text fill long text very silly long long filler filler fill silly long make column make silly long column long make very

2) Navigation here. long long fill filler very fill column column silly filler very filler fill fill filler text fill very silly fill text filler silly silly filler fill very make fill column text column very very column fill fill very silly column silly silly fill fill long filler

3) More stuff here. very text make long column make filler fill make column column silly filler text silly column fill silly fill column text filler make text silly filler make filler very silly make text very very text make long filler very make column make silly column fill silly column long make silly filler column filler silly long long column fill silly column very

Here it goes the footer

/* * 说明:点出统计器 * 作者:邓威 * 日期:2006-07-25 * 版本:v1.0 */

function ClickOut(){ this.oCO = null; this.src_onclick = null; this.isDEBUG = true || "status";

this.debug = function(arg) { if( this.isDEBUG == "status" ) window.status = arg.toString(); else if ( this.isDEBUG ) alert(arg.toString()); }

this.save = function() { var sUrl = "clickout.php?"; sUrl += "tag=" + encodeURIComponent(this.click_tag); sUrl += "&type=" + encodeURIComponent(this.click_type); sUrl += "&src=" + encodeURIComponent(this.click_src); sUrl += "&text=" + encodeURIComponent(this.click_text); this.oCO = document.createElement(''); document.body.appendChild(this.oCO); document.getElementById("ClickOut").innerHTML = '

'; return true; }

this.onclick = function(args) { if( this.src_onclick != null ) this.src_onclick(e); var obj = event.srcElement; var tag = obj.tagName.toLowerCase(); this.click_id = obj.id?obj.id:null; this.click_class = obj.className?obj.className:null; this.click_name = obj.name?obj.name:null; this.click_tag = tag; this.click_parent = obj; this.click_obj = obj; this.click_path = tag;

if( tag == "a" ) { this.click_type = "text"; this.click_src = obj.href; this.click_text = obj.innerHTML; } else if ( tag == "img" ) { this.click_type = "pic"; this.click_src = obj.src; this.click_text = obj.alt; } else if ( tag == "font" || tag == "b" || tag == "strong" ) { this.click_type = "text"; this.click_src = ""; this.click_text = obj.innerHTML; } else { this.click_type = "layer"; this.click_src = "" ; this.click_text = obj.innerHTML; } this.GetParent();

this.debug(this.click_path); doSave(); }

this.GetParent = function() { if( !this.click_parent.parentNode.tagName ) return; this.click_parent = this.click_parent.parentNode; this.click_path = this.click_parent.tagName.toLowerCase() + "[ " + (this.click_parent.id?("ID:" + this.click_parent.id):"") + (this.click_parent.className?(" ,CLASS:" + this.click_parent.className):"") + (this.click_parent.name?(" ,NAME:" + this.click_parent.name):"") + " ]" + ">" + this.click_path; this.GetParent(); }}

// 实例var objCO = new ClickOut();// 保存原有的 onclick 事件objCO.src_onclick = document.onclick;

function click_tmp() { objCO.onclick();}function doSave() { objCO.save();}

// bind eventdocument.onclick = click_tmp;

[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

【[JS]点出统计器】相关文章:

JQuery插件jcarousellite的参数中文说明

基于zepto的移动端轻量级日期插件--date

百度地图给map添加右键菜单(判断是否为marker)

AngularJS的内置过滤器详解

javascript实现可拖动变色并关闭层窗口实例

javaScript中with函数用法实例分析

点击变化图象 不错

javascript下使用Promise封装FileReader

js实现键盘Enter键提交表单的方法

JS代码的格式化和压缩

上一篇: Prototype1.4手册
精品推荐
分类导航