我在 HTML 中有这段代码:
$('#icon_index a[href="#profilo_page"]').hover(
function () {
$(this).children("img").attr("src", "img/profilo_p.png");
},
function () {
$(this).children("img").attr("src", "img/profilo_n.png");
}
);
当我使用这个命令时:
$.mobile.changePage("#index_page");
图像将保持选中状态。同时,如果我对另一个页面使用 changePage 命令,然后对 index_page 使用它。是否有解决方案可以在单击后“取消选择”图像而不在其他页面中导航?