jQuery语法如何动态更改input类型属性

2024年04月30日 建站教程

$(document).ready(function() {
  $("#changeTypeButton").click(function() {
    // 获取当前input的类型属性
    var currentType = $("#input").attr("type");

    // 根据当前类型切换到相应的类型
    if (currentType === "text") {
      $("#input").attr("type", "password");
    } else if (currentType === "password") {
      $("#input").attr("type", "email");
    } else if (currentType === "date") {
      $("#input").attr("type", "date");
    } else if (currentType === "number") {
      $("#input").attr("type", "number");
    } else if (currentType === "email") {
      $("#input").attr("type", "text");
    }
  });
});

本文链接:http://so.lmcjl.com/news/3439/

展开阅读全文
相关内容