gpt4 book ai didi

javascript - ng-click 访问其他元素值

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

我试图在单击按钮时访问输入的值:

Controller :

app.controller('MainCtrl', function($scope) {
$scope.test = function(val) {
alert(val);
}
});

HTML:

<body ng-controller="MainCtrl">
<input type="text" id="inputText">
<button type="button" ng-click="test(document.getElementById('inputText').value)">Test</button>
</body>

但是“未定义”是警报中出现的内容。这是如何在 Angular 上实现的?

最佳答案

在所需的输入上使用ng-model

<input type="text" id="inputText" ng-model="myInput">
<button type="button" ng-click="test(myInput)">Test</button>

关于javascript - ng-click 访问其他元素值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24414535/

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