這是我的代碼,我想要的是刪除我單擊的類。通過點擊/點擊Jquery中的刪除點擊類?
我不明白爲什麼它不工作,我都嘗試
$(document).ready(function(){
$(".start").on("click", function(){
$(this).removeClass("start");
return false;
});
});
和
$(document).ready(function(){
$(".start").click(function(){
$(this).removeClass("start");
return false;
});
});
的index.php
在while循環,我有
<li><a href="#" class="start">Name</a> </li>
你在控制檯得到任何'undefined'錯誤? – 2014-11-25 07:42:00
確保您已包含jQuery庫。 – 2014-11-25 07:42:24