Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的(桌面)JQM 网站中使用了这行代码,它完成了滑块应该做的事情,但它也刷新了整个页面,这很烦人。
关于如何在不使用该.refresh()方法(或如何防止它重新加载整个页面)的情况下手动重置滑块按钮的任何想法?
.refresh()
$("#slider1").val("3").refresh();
试试这个:
$("#slider1").val("3").slider("refresh");
有关更多信息,请阅读jQuery Mobile 文档 - 滑块