gpt4 book ai didi

javascript - 使用 AngularJS 切片字符串

转载 作者:行者123 更新时间:2023-11-30 08:29:54 24 4
gpt4 key购买 nike

如何使用 Angular JS 对输入文本字段值进行切片

HTML 格式

<form>
<input type="text" ng-model="cardExp">
</form>

JS

console.log($scope.cardExp) //output : 122016

我想将文本字段值(“122016”)放入变量 a 和 b 中,它们的值是

  1. a是前两位数

  2. b 是接下来的 4 位数字

谢谢,

最佳答案

您可以使用纯 javascript。

var a = $scope.cardExp.substring(0, 2);
var b = $scope.cardExp.substring(2);

关于javascript - 使用 AngularJS 切片字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39645295/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com