zoukankan      html  css  js  c++  java
  • form表单填充笔记

    $.fn.loadJson = function(jsonValue) {
      var obj = this;
      $.each(jsonValue, function(name, ival) {
        var $oinput = obj.find("input[name=" + name + "]");
        if ($oinput.attr("type") == "radio" || $oinput.attr("type") == "checkbox") {
          $oinput.each(function() {
            if (Object.prototype.toString.apply(ival) == '[object Array]') {
            //是复选框,并且是数组
              for (var i = 0; i < ival.length; i++) {
                if ($(this).val() == ival[i] || $(this).val() == '' + ival[i])
                  $(this).attr("checked", "checked");
              }
            } else {
              if ($(this).val() == ival || $(this).val() == '' + ival)
                $(this).attr("checked", "checked");
            }
          });
        } else if ($oinput.attr("type") == "textarea") {
          //多行文本框
          obj.find("[name=" + name + "]").html(ival);
        } else if ($oinput.attr("type") == "file") {

        } else {
          obj.find("[name=" + name + "]").val('' + ival);
       }
      });
    };

  • 相关阅读:
    CSS3新特性
    CSS简述
    HTML5新属性
    Python学习笔记(十二)
    Python学习笔记(十一)
    Python学习笔记(十)
    Python学习笔记(九)
    Python学习笔记(八)
    Python学习笔记(七)
    Python学习笔记(六)
  • 原文地址:https://www.cnblogs.com/adolfvicto/p/8534421.html
Copyright © 2011-2022 走看看