ng-mousedownتوجيه AngularJS


مثال

نفِّذ تعبيرًا عند حدوث نقرة بالماوس:

<div ng-mousedown="count = count + 1" ng-init="count=0">Click me!</div>

<h1>{{count}}</h1>

التعريف والاستخدام

يخبر ng-mousedownالتوجيه AngularJS بما يجب القيام به عند النقر فوق زر الماوس فوق عنصر HTML المحدد.

لن يتجاوز ng-mousedownالتوجيه من AngularJS حدث onmousedown الأصلي للعنصر ، وسيتم تنفيذ كلاهما.

ترتيب النقر بالماوس هو:

1. الفأر

2. Mouseup

3. انقر فوق


بناء الجملة

<element ng-mousedown="expression"></element>

مدعوم من قبل جميع عناصر HTML.


قيمه المعامل

Value Description
expression An expression to execute when a mouse button is clicked.