您好,登錄后才能下訂單哦!
本文實(shí)例為大家分享了AngularJS表單簡(jiǎn)單操作代碼,供大家參考,具體內(nèi)容如下
HTML正文:
<div ng-app="myApp" ng-controller="myCtrl"> <!-- novalidate:當(dāng)提交表單時(shí)不對(duì)表單數(shù)據(jù)(輸入)進(jìn)行驗(yàn)證 --> <form novalidate> First Name:<input type="text" ng-model="user.firstName"><br> Last Name:<input type="text" ng-model="user.lastName"> <br><br> <button ng-click="reset()">RESET</button> </form> <p>form = {{user }}</p> <p><font color="red">initInfo = {{initInfo}}</font></p> </div>
Javascript操作代碼:
var app = angular.module('myApp', []); app.controller('myCtrl', function($scope) { $scope.initInfo = {firstName:"squirrel", lastName:"Python"}; $scope.reset = function() { $scope.user = angular.copy($scope.initInfo); // user對(duì)象等于master對(duì)象:深復(fù)制 }; //JS掃描腳本時(shí)會(huì)自動(dòng)調(diào)用reset方法進(jìn)行輸入框信息的初始化 $scope.reset(); });
效果:
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。