手机页面的跳转失效问题

     $("#select-viewType").change(function () {
                switch ($("#select-viewType").val()) {
                    case "dataType":
                        $.mobile.changePage("classification.html", { transition: "pop", changeHash: true });//电脑、手机均能跳转,但刷新后JS、CSS才能有效果
                        //window.location.href = "classification.html";//电脑可以跳转,手机不行
                        break;
                }

请高手给予解释,给初入手机端开发的我以宽容。同时问一下,手机的跳转到底用什么方式比较好。

兼容性问题,window.location

你这是html加载到手机中操作么