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.