Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Tiếp tục điền biểu mẫu HTML sau khi đóng và mở lại lần nữa

đây là ví dụ về biểu mẫu có tính năng tự động điền mà bạn có thể sử dụng localstorage

 <input id="FirstName" type="text" name="FirstName" class="field-style" placeholder="First Name" required onchange="save()"/> 

 <script>
// Check browser support
if (typeof(Storage) !== "undefined") {
    if(localStorage.getItem("FirstName")!=""){

    }else{
    // Store
        localStorage.setItem("FirstName", "Hitesh");
    }
    // Retrieve
    document.getElementById("FirstName").value = localStorage.getItem("FirstName");
} else {
    document.getElementById("FirstName").value = "Sorry, your browser does not support Web Storage...";
}
 function save(){
    var name = document.getElementById('FirstName').value;
  localStorage.setItem("FirstName", name);
 }    
  </script>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Phân trang MySQL PHP với thứ tự ngẫu nhiên

  2. Quyền truy cập bị Từ chối vì MYSQL ERROR 1045

  3. Tìm lần tiếp theo doanh nghiệp mở cửa; tính toán giờ của mysql

  4. Làm cách nào để lấy cấu trúc bảng từ tệp .frm bằng PHP?

  5. Cách chèn giá trị vào cột nhận dạng tự động trong MYSQL