HTML代碼:jQuery開發的簡單功能無法正常工作
$('.alertme').click(function(){
alert('By selecting new image your old image will be remove');
$(this).removeClass('alertme');
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
#Before a Function is executed
<input type="file" name="efile" id="efile" style="width:100%" class="alertme">
#After a function is executed
<input type="file" name="efile" id="efile" style="width:100%" class="">
它仍然是一個執行的函數後提醒我。我不知道它爲什麼會發生?你能幫我麼?你的幫助表示讚賞。
沒有重複的ID! – Li357
@Andrew Li我的功能是基於班級。 –