$(document).on('turbolinks:load', function() {
$('.box').on("click", function() {
alert('hello')
});
});
這對帶有ajax的類框元素不起作用。它只適用於初始加載頁面時出現的元素。我也嘗試作爲包裝:在附加了ajax的元素上不起作用
$(document).ready(function() { });
和
var helloscript = function() { };
但沒有任何工程。
的[?事件綁定的動態創建的元素]可能的複製(http://stackoverflow.com/questions/203198/event-binding-on-dynamically-created -elements) – Liam