好吧,我需要一种方法来转发发生在 textarea 元素上的 keypress (或 keydown 等)事件,而我试图做的是:
<div id="wrapper" ng-controller="MyTestCtrl">
<div id="text" ng-click="DivClick()">
<ul>
<li ng-repeat="item in items">
<textarea ng-click="InnerClick()" ui-keypress="TextKeypress()" autofocus></textarea>
</li>
</ul>
</div>
</div>
但这似乎很有趣,我想避免使用任何特定的键码,因为每次用户在其中输入内容时,我都需要它来更新 textarea 的高度(这就是 TextKeypress 函数正在做的事情)。