構築しようとしている単純なjQueryスクリプトがありますが、href文字列の比較でtrueを返すことができません:
<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 が同じであっても、「いいえ」というアラートが表示され続けます。私は何が欠けていますか?