zoukankan      html  css  js  c++  java
  • 打印touch事件,打印手机触摸事件

    function printEvent(evt)
    {
    	try
    	{
    		var tmp = '';
    		for(var i in evt)
    		{
    			tmp += i+':'
    			var v = evt[i]+'';
    			if(v=='[object HTMLDivElement]')
    			{
    				tmp+=' <b>div</b> - '+evt[i].id+'<br/>';
    			}
    			else if(''+(evt[i])=='[object TouchList]')
    			{
    				tmp+=' <br/>    <b>touchlist</b>:<div style="border:1px solid red; margin:1px"> ';
    				for(var x in evt[i])
    				{
    					if(''+(evt[i][x])=='[object Touch]')
    					{
    						tmp+='<br>    ----'+x+':'+' <b>Touch</b><br/><div style="border:1px solid blue;margin:1px">';
    						for(var y in evt[i][x])
    						{
    							if(evt[i][x][y]=='[object HTMLDivElement]')
    							{
    								tmp+='    ----'+y+':<b>div</b> - '+evt[i][x][y].id+'<br/>';
    							}else tmp+='<br>    ----'+y+':'+evt[i][x][y]+'<br/>';
    						}
    						tmp+='</div>';
    					}else
    						tmp+='<br>     '+x+':'+evt[i][x]+'<br/>';
    				}
    				tmp+='</div>';
    			}else if(typeof(evt[i])=='number'){				
    				tmp+='<font color="green">'+v+'</font><br/>';
    			}			
    			else tmp+=''+v+'<br/>';
    		}
    		return tmp;
    	}catch(e){
    		alert(e)
    	}
    }

  • 相关阅读:
    移动端开发-禁止横屏
    奇葩的对象创建方式(更新中)
    每日积累之8.8
    每日积累 8.6
    折半查找
    linux中的amount的解释
    Redis集群错误
    每日积累 8.6
    Redis中在程序中的应用
    每日积累 8.4
  • 原文地址:https://www.cnblogs.com/lein317/p/5067628.html
Copyright © 2011-2022 走看看