在我的 index.html.erb 我有:
<button type="button" id="clean">Clean</button>
此按钮是在“something.js.erb”操作之后添加的。 因此,在 application.js 中:
$(function () {
$('button#clean').click(function(){
$('#target').remove();
});
});
为什么不工作?当我将此脚本放入 html 时,它就可以工作了。