没有形式的intut / textarea / checkbox值如何?

时间:2015-10-27 19:33:51

标签: javascript angularjs

HTML:

case keycode:
    Keyboard currentKeyboard = mInputView.getKeyboard();
    List<Keyboard.Key> keys = currentKeyboard.getKeys();
    mInputView.invalidateKey(*keycode*);
    keys.get(*keycode*).label = null;
    key.get(*keycode*).icon = getResources().getDrawable(R.drawable.image);

JS:

<input ng-model='user.email' type="text" value='' />
<input ng-model='user.password' type="password" value='' />
<div ng-click='tryEnter()'>
   <span>Enter</span>
</div>

内部点击功能我尝试通过ng-model从输入中获取值。 Bot $范围内部功能不可用。

1 个答案:

答案 0 :(得分:0)

您可以将值本身的作用域作为参数传递给Click处理程序(tryEnter)函数。这里有关于StackOverflow问题的一些好答案:How to pass scope variable through ng-click function?