作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试从 jQuery Mobile Beta 2 更新到 rc1。
Chrome 给我以下错误:
Uncaught TypeError: Object # has no method 'updateHash'
我像这样使用 changeHash:
$.mobile.changePage(page);
$.mobile.updateHash(page, true);
这个功能似乎从Beta 3开始就被移除了,哪个功能可以替代它的功能?
最佳答案
现在这是方法 $.mobile.changePage()
的参数:
changeHash (boolean, default: true) Decides if the hash in the location bar should be updated.
因此您的代码应更新为:
$.mobile.changePage(page, { changeHash: true });
来源:http://jquerymobile.com/demos/1.0rc1/docs/api/methods.html
关于javascript - 如何替换 jQuery Mobile 中已弃用的函数 - updateHash,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7787289/
我尝试从 jQuery Mobile Beta 2 更新到 rc1。 Chrome 给我以下错误: Uncaught TypeError: Object # has no method 'update
我是一名优秀的程序员,十分优秀!