我有我試圖建立在一個簡單的jQuery腳本,但我不能讓HREF字符串比較返回true:jQuery的this.href字符串比較不工作
<a class="test" href="/Services/Cloud-Hosting">Click Me</a>
我的腳本如下如下:
$('.test').click(function() {
if ($(this).href == "/Services/Cloud-Hosting") {
alert('hi');
}
else {
alert('no');
}
});
我不斷收到的「不」,甚至認爲HREF中是相同的警報。我錯過了什麼?
現在你得到你的答案後,檢查這個知道解釋http://stackoverflow.com/questions/3722544/what-is-the-difference-between-this-and-this – Adi