我想檢查一下<a>
標籤的「href」是否爲空,如果這是真的,它應該提示類似「網站不可用atm」 ,如果鏈接是正確的,它應該什麼也不做。檢查href是否爲undefined,如果是true alert smth(沒有jQuery)
HTML
<a onclick="testif();" class="link" href="www.google.com">This Link is defined</a>
<a onclick="testif();" class="link" href="">This Link is undefined</a>
的JavaScript
function testif(){
if (document.getElementsByClassName("link").getAttribute("href") == ""){
Alert("Site isn't available")
}else {
// if the link is correct, alert nothing
}
};
謝謝:)
您的問題是什麼? –