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 网络应用程序,其想法是用户将其固定到他们的主页。但是,每次我按下相应的图标时,它都会重新加载页面。我希望它保持上次查看的状态,直到调用显式刷新。这可能吗?
谢谢
这里不多说了...
您是否尝试将 .preventDefault() 绑定到固定项目。
$(youritems).on('click', function(e){ e.preventDefault; });