谁能告诉我如何从表单字段中检索名字和姓氏的值。
条件是名字和姓氏写在同一文本字段中,并用" "
(空格)分隔。我需要得到它的价值。
这是我的代码和条件
PLUNKR
<body ng-app="app">
<div ng-controller="first">
<form name="myform" novalidate>
<div>
<input type="text" placeholder="FirstName lastname" ng-model="user.firstname" name="username" required style="width: 300px;padding: 20px">
<!--<span ng-show="myform.username.$dirty && myform.username.$error.required">Required</span>-->
</div>
<div>
<input type="email" placeholder="Email" ng-model="user.email" name="email" required style="width: 300px;padding: 20px;margin-top: 50px">
</div>
<p>{{user}}</p>
</form>
</div>
</body>
最佳答案
这样尝试
var name = $scope.user.firstname.split(" ");
console.log(name[0]) // first name;
if(name.length>1)
console.log(name[1]) // last name
PLUNKR
关于javascript - 如何从angularjs的表单中查找名字和姓氏?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32643089/