0
我在使用jquery的ruby上的代碼有問題,我使用jquery重定向,然後返回使用後退按鈕。它只在第一次運行,如果你從重定向返回,它只是不綁定到DOM。Rails 4 + JQuery使用jQuery重定向頁面然後回來,jQuery不工作
代碼:
$(function(){
$('tr.item').bind("click", function(){
window.location.href = "/products/" + $(this).attr('id');
// Or, we can grab the HREF from the first anchor:
// window.location = $('a:first', this).attr('href');
});
});
PS:我已經嘗試過了window.onunload伎倆。