android > Webview 开发总结

** 1 .尽量使用 jquery mobiles  的touch事件而不是 onclick 这样减少延迟

<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>

<script type="text/javascript">
	$(document).ready(function(){
		$(".fixed li").bind("tap", function(event) {
			$(".fixed li").removeClass("bgColor");
			$(this).addClass("bgColor");
			$(this).find("img").attr("src","<?PHP echo JURI::base(); ?>components/com_self/contrl/app_footer/image/users_shadow_icon.png");
		});  
    });
</script>

 

 

 

 

你可能感兴趣的:(android)