溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

淺談angular表單提交中ng-submit的默認(rèn)使用方法

發(fā)布時(shí)間:2020-09-27 19:19:17 來(lái)源:腳本之家 閱讀:335 作者:狗子life 欄目:web開(kāi)發(fā)

在表單提交的時(shí)候,我使用了一個(gè)button,但ng-submit寫在form標(biāo)簽中,然而button中我未使用任何方法訪問(wèn)submit()函數(shù)

<div ng-app="dkr">
	 <div ng-controller="logincontrol">
	 <form ng-submit="submit(user)">
	 	<div>賬號(hào)名 <input type="text" ng-model="user.username"/></div>
	 	<div>密碼 <input type="text" ng-model="user.password"></div>
	 	<button type="submit">提交</button> 	
	 	<div ng-show="success.length>0">{{success}}</div>
	 	<div ng-show="error.length>0">{{error}}</div>
	 </form>
	 </div> 
<code class="language-html"></div></code> 

	angular.module("dkr",[])
	.controller("logincontrol",function($scope){
 		$scope.user={username:'',password:''};
 		$scope.success="";
 		$scope.error="";
 		$scope.submit=function(u){
 			if($scope.user.username=="admin"&&$scope.user.password=="123"){
 				$scope.success="success";
 				$scope.error="";
 			}
 			else{
 				$scope.success="";
 				$scope.error="error";
 			}
 			console.log(u);
 		};
 	})

點(diǎn)擊提交后的結(jié)果:

淺談angular表單提交中ng-submit的默認(rèn)使用方法

如上所示,返回結(jié)果以及控制臺(tái)打印完全正確。

然而我對(duì)提交這個(gè)button未做任何處理

然后經(jīng)過(guò)測(cè)試,我發(fā)現(xiàn)button的默認(rèn)type為submit。

因?yàn)橹灰獙?/strong>

<button>提交</button>

改成

<button type="button">提交</button>

之后

點(diǎn)擊按鈕沒(méi)有任何反應(yīng)。

因此在form表單提交的時(shí)候一定要注意button標(biāo)簽的默認(rèn)使用。

以上這篇淺談angular表單提交中ng-submit的默認(rèn)使用方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI