zoukankan      html  css  js  c++  java
  • angularjs 延迟更新和angularjsUI

    angularjsUI库
    https://material.angularjs.org/latest/

    ng-model-options="{ updateOn: 'blur' }"

    options to apply to the current model. Valid keys are:

    • updateOn: string specifying which event should the input be bound to. You can set several events using an space delimited list. There is a special event called default that matches the default events belonging of the control.
    • debounce: integer value which contains the debounce model update value in milliseconds. A value of 0 triggers an immediate update. If an object is supplied instead, you can specify a custom value for each event. For example:ng-model-options="{ updateOn: 'default blur', debounce: { 'default': 500, 'blur': 0 } }"
    • allowInvalid: boolean value which indicates that the model can be set with values that did not validate correctly instead of the default behavior of setting the model to undefined.
    • getterSetter: boolean value which determines whether or not to treat functions bound to ngModel as getters/setters.
    • timezone: Defines the timezone to be used to read/write the Date instance in the model for<input type="date"><input type="time">, ... . It understands UTC/GMT and the continental US time zone abbreviations, but for general use, use a time zone offset, for example, '+0430' (4 hours, 30 minutes east of the Greenwich meridian) If not specified, the timezone of the browser will be used.
     
    <div ng-controller="ExampleController">
      <form name="userForm">
        <label>Name:
          <input type="text" name="userName"
                 ng-model="user.name"
                 ng-model-options="{ updateOn: 'blur' }"
                 ng-keyup="cancel($event)" />
        </label><br />
        <label>Other data:
          <input type="text" ng-model="user.data" />
        </label><br />
      </form>
      <pre>user.name = <span ng-bind="user.name"></span></pre>
    </div>

     

  • 相关阅读:
    在AS/400上根据日期生成星期几
    如何删除含无效字符的文件
    在CL中使用SST或者SUBSTRING
    取网络属性
    如何在程序中获取系统ASP使用率等系统状态信息
    在CL中使用ELSE
    在CL中读一个文件
    如何在FTP命令行执行AS/400命令
    广告悬停功能
    关于Grouping, Rollup,cube,
  • 原文地址:https://www.cnblogs.com/danghuijian/p/4819664.html
Copyright © 2011-2022 走看看