ボタンをクリックしてUIスライダーを選択した後に更新された値を表示する以下のjavascript関数があります。ボタンが再度クリックされないように、ページ全体でボタンを無効にしました。
$(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>
ただし、ボタンをクリックしても何も起こりません。