ユーザーが押したときにどのようにキャッチできますか Ctrl クリックしますか?
私はシングルクリックでそれを行うことができます:
<input ng-click="some_function()"/>
しかし、私は次のようなものが必要です:
<input ng-CTRL-click="some_Nice_function()"/>
それは可能ですか?
[〜#〜] html [〜#〜]
<input ng-click="some_function($event)"/>
[〜#〜] js [〜#〜]
$scope.some_function = function(event){
if (event.ctrlKey)
{
// logic here
}
}