‎‎ويژگيHTML autofocus

Previous >    <Next  

‎‎تعريف وكاربردDefinition and Usage -‎

‎ويژگي‎autofocus‎ ازنوع بولين است .هنگاميكه در عنصر ظاهر ميشود، مشحص ميكند ‎كه عنصر بصورت اتوماتيك درهنگام لود صفحه فوكوس شود يا نه.

‎‎كاربرد ويژگيApplies to -‎

‎‎ويژگي فوق ميتواند در عناصر مشخص شده در جدول زير استفاده شود.

‎‎عنصر ‎‎شــرح عنصر
<button> ‎‎يك دكمه قابل كليك تعريف مي نمايد.
<input> ‎‎يك كنترل ورودي را تعريف ميكند.
<select>‎‎ ‎‎يك ليست كشوئي‎"drop-‎down list‎"‎را معرفي ميكند .
<textrea>‎‎ ‎‎يك كنترل ورودي چند خطي را معرفي مينمايد(textarea)

‎‎مثالها

‎‎مثالbutton ـ يك دكمه با ويژگي autofocus

<button type="button" autofocus>Click Me!

--(go to editor for change code and run)

‎‎مثالinput ـ فيلد ‎"first_name‎"‎بطور خود كار فوكوس ميشود .

<form action="/action_page.php">
  First name: <input type="text" name="fname" autofocus><br>
  Last name: <input type="text" name="lname"><br>
  <input type="submit">
</form> 

--(go to editor for change code and run)

‎‎مثالtextarea ـ يك ناحيه متني با انتخاب خودكار

 <textarea autofocus>
At w3schools.com you will learn how to make a website. We offer free tutorials in all web development technologies.
</textarea> 

--(go to editor for change code and run)

‎‎پشتيباني مرورگرBrowser Support -‎

‎‎ويژگي فوق در عناصر مختلف مطابق جدول زير توسط مرورگرها پشتيباني ميشوند.

‎‎عنصر Chorome Edge Firefox Safari Opera
‎form‎ ‎‎5.0‎ ‎‎10.0‎ ‎‎4.0‎ ‎‎5.0‎ ‎‎9.6‎
‎input‎ ‎‎5.0‎ ‎‎10.0‎ ‎‎4.0‎ ‎‎5.0‎ ‎‎9.6‎
‎textarea‎ ‎YES‎ ‎‎10.0‎ ‎‎4.0‎ ‎YES‎ ‎YES‎

‎مرجع كامل تگهايHTML
‎مرجع كامل ويژگيهايHTML


Previous >    <Next