Use css selectors to add the html tag 's action

阅读更多
用css selectors 绑定html tag的行为
等同于下面的语句:
  • Click me to delete me

  • 这里用到了Ben Nolan 在 http://bennolan.com/behaviour/ 上发布的Behaviour.js .

    1 . html文件如下:
    
    
    	
    		
    		Example
    		
    		
    	
    	
    	
    	
    
    

    2. example.js文件如下:
    var myrules = {
    	'#example li' : function(el){
    		el.onclick = function(){
    			this.parentNode.removeChild(this);
    
    		}
    	}
    };
    
    Behaviour.register(myrules);


    结论: 这样的结果会让view层更清洁.

    [附]behavior.js: http://bennolan.com/behaviour/behaviour.js

    你可能感兴趣的:(HTML,CSS)