我有以下 javascript 函数,该函数在单击按钮后选择 UI 滑块后显示更新的值。我已禁用跨页面的按钮,以便不会再次单击该按钮。
$(function () {
var disabled = localStorage.getItem("updateDisabled");
if (disabled) $('#update').attr('disabled', disabled);
});
$("#update").click(function (){
this.disabled = true;
localStorage.setItem("updateDisabled", true);
$("#kwBody > tr").each(function() {
var $cells = $(this).children("td");
var found=false,count=0,currentCell;
for (var i=0;i<masterData.length;i++) {
currentCell=$cells.eq(i+1);
found = parseInt(currentCell.text(),10) >=masterData[i];
currentCell.toggleClass("found",found); //add or remove class to highlight
count+=found;
}
window.console && console.log(masterData,count);
$(this).toggle(count==masterData.length); // show if all cells >
});
在我的页面中,我试图包含另一个按钮,例如“返回”,当单击该按钮时,将重新加载初始页面本身。
<form method="post" action"willdoit.php">
<input type = "button" value = "Back"></input>
</form>
但是,如果我单击该按钮,则不会发生任何事情。