<a>
タグの「href」が空であるかどうかを確認したい場合は、「サイトが利用できません」という警告が表示されるはずです。リンクが正しい場合は何もしないでください。真のアラートスムース(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
}
};
感謝:)
あなたの質問はありますか? –