随笔代码记忆

document.ontouchmove = function(e) { e.preventDefault(); } /** 禁止ios默认拉动弹性行为**/



        $(function(){

            $(".weizhang").bind("touchstart",function(e){

                window.location.href ="./look.php";

                e.stopPropagation();

                return false;

            })

            

           

            

            $('.conn-top').find('li').click(function(){

                layer.open({

                    content: '正在开发...',

                    style:"width:80%",

                    btn: ['']

                });

            })

        })

 

你可能感兴趣的:(代码)