我有jQuery代碼:按鈕確定,但HREF鏈接不火
$("#step1Skip").on("click", function(event){
$('#chooseTheme, #addImages, #addVideo, #finalStep').hide();
$('#addLogo').show();
});
如果我使用一個按鈕例如
<button type="button" id="step1Skip">Skip this step >></button>
這工作正常。但是,如果我嘗試一個簡單的鏈接相同:
<a href="#" id="step1Skip">Skip this step</a>
它什麼也不做,根本行不通。這是爲什麼?
我不會在同一時間嘗試它們,所以它不是一個ID問題。