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.
有没有办法在 Jquery Mobile 中找到上一页的 url?
我使用了 data.prevPage.attr("href")但它不起作用。
有人可以帮忙吗?提前致谢。
事件pagechange处理程序接收第二个参数fromPage,您可以从中提取您来自的页面的 URL。
pagechange
fromPage
您可以使用纯 JavaScript 并尝试:
document.referrer
如果有的话,这个变量将包含上一页的 url。
我有一个简单的方法可以返回上一页:
历史.back()
或history.go(-1)
这对我来说很好!
谢谢您的帮助。