0

我有以下 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>

但是,如果我单击该按钮,则不会发生任何事情。

4

2 回答 2

3
<input type ="submit" value ="Back" />

这将提交您的表格。您拥有的按钮将只是一个按钮,什么也不做。

于 2013-11-01T19:48:18.593 回答
2

将类型更改为输入类型 =“提交”

于 2013-11-01T19:50:36.670 回答