我有 JQuery 代码:
$("#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 问题。