下面的onclick angularjs是我的html:如何發送輸入文本框的值在文本框中
<tr ng-repeat="c in client">
<td><input type =text id = "id" value = {{c.id}} onclick = "display();" > </input> </td>
<td><input type =text value = {{c.fname}}></td>
</tr>
我的JS:
function display()
{
var x=document.forms["form"]["id"].value;
alert(x);
}
我得到的警告框的輸入值但是如何在另一個angulr js函數中獲得這個值。我想下面的代碼BT不工作,請給我建議
<input type =text id = "id" value = {{c.id}} ng-model = user.id ng-click ="init(user)" > </input>
您的控制器代碼在哪裏? – SamV