JavaScript判斷使用者是否對錶單進行了修改的方法,javascript表單

來源:互聯網
上載者:User

JavaScript判斷使用者是否對錶單進行了修改的方法,javascript表單

本文執行個體講述了JavaScript判斷使用者是否對錶單進行了修改的方法。分享給大家供大家參考。具體分析如下:

這段JS代碼可以判斷出使用者是否對錶單內容進行了修改,如果修改了表單,並退出瀏覽器,則會提醒使用者是否要儲存表單的內容,是非常有用的代碼。

function formIsDirty(form) { for (var i = 0; i < form.elements.length; i++) {  var element = form.elements[i];  var type = element.type;  if (type == "checkbox" || type == "radio") {   if (element.checked != element.defaultChecked) {    return true;   }  }  else if (type == "hidden" || type == "password" ||       type == "text" || type == "textarea") {   if (element.value != element.defaultValue) {    return true;   }  }  else if (type == "select-one" || type == "select-multiple") {   for (var j = 0; j < element.options.length; j++) {    if (element.options[j].selected !=      element.options[j].defaultSelected) {     return true;    }   }  } } return false;}

使用樣本:當退出瀏覽器是,如果使用者修改了表單,則提醒使用者是否要儲存

window.onbeforeunload = function(e) { e = e || window.event;  if (formIsDirty(document.forms["someForm"])) {  // For IE and Firefox  if (e) {   e.returnValue = "You have unsaved changes.";  }  // For Safari  return "You have unsaved changes."; }};

下面是一個完整的範例代碼
複製代碼 代碼如下:Click on below button. Now change some values in form and click the button again.
<form name="fooForm">
    <input type="text" name="t"><br>
    <input type="text" name="2" value="default"><br>
    <select name="some">
        <option value="fooo" selected="">foo</option>
        <option value="bar">bar</option>
    </select><br>
</form>
    <button onclick="alert(formIsDirty(document.fooForm))">Click to check if Form is Dirty</button>
<br>
<script>
function formIsDirty(form) {
  for (var i = 0; i < form.elements.length; i++) {
    var element = form.elements[i];
    var type = element.type;
    if (type == "checkbox" || type == "radio") {
      if (element.checked != element.defaultChecked) {
        return true;
      }
    }
    else if (type == "hidden" || type == "password" ||
             type == "text" || type == "textarea") {
      if (element.value != element.defaultValue) {
        return true;
      }
    }
    else if (type == "select-one" || type == "select-multiple") {
      for (var j = 0; j < element.options.length; j++) {
        if (element.options[j].selected !=
            element.options[j].defaultSelected) {
          return true;
        }
      }
    }
  }
  return false;
}
</script>

希望本文所述對大家的javascript程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.