jQuery 移动:
我有这个代码:
$("#header ." + className).on("click",function(event)
{
var localValue = localStorage.getItem(selectedInstitut);
if (localValue === null) {
localStorage.setItem(selectedInstitut, "favorit");
console.log("Is NOT favorited. Doing that now")
$(this).buttonMarkup({theme: 'b'});
}
else {
localStorage.removeItem(selectedInstitut);
console.log("Is favorited. Unfavorited now!!")
$(this).buttonMarkup({theme: 'a'});
}
});
这一次很好用。但是我在几个动态生成的页面上有相同的按钮(虽然不同的类名)。如果在一个页面上单击按钮并且我正在切换到另一个页面,它会进入 IF 并进入 ELSE 条件。如果我切换到第 3 页,它会进入 IF、ELSE 并再次进入 IF 语句......等等第 4 页。
有任何想法吗?