ng-href
คำสั่งAngularJS
ตัวอย่าง
สร้าง href โดยใช้ AngularJS:
<div ng-init="myVar = 'https://www.w3schools.com'">
<h1>Tutorials</h1>
<p>Go to <a ng-href="{{myVar}}">{{myVar}}</a>
to learn!</p>
</div>
ความหมายและการใช้งาน
คำng-href
สั่งจะแทนที่แอตทริบิวต์ href ดั้งเดิมขององค์ประกอบ <a>
ng-href
ควรใช้คำสั่งแทนถ้าhref
คุณมีโค้ด AngularJS ภายในค่า href
คำng-href
สั่งนี้ทำให้แน่ใจว่าลิงก์จะไม่เสียหายแม้ว่าผู้ใช้จะคลิกลิงก์ก่อนที่ AngularJS จะประเมินโค้ด
ไวยากรณ์
<a ng-href="string"></a>
สนับสนุนโดย <a> องค์ประกอบ
ค่าพารามิเตอร์
Value | Description |
---|---|
string | A string value, or an expression resulting in a string. |