我在rails中有一個link_to,我想用Jquery來更新一些數據參數。用jQuery更新link_to數據參數
<script>
$('#filterrific_results').find('.btn').on('click', function(){
var patient_id = $(this).attr('data-patient_id');
var templates = $('.modal-body').find('a');
templates.attr('patient_id', patient_id);
})
</script>
我已經試過這樣:
<%= link_to new_assessment_path(:template_id => template.id, :patient_id => "") do %>
但代碼似乎沒有工作,因爲我加入了數據屬性href網址已經被渲染的軌道之後。
我也試過:
<%= link_to new_assessment_path, {:controller => "assessments", :action => "new", :template => template.id, :patient_id=> patient.id} do %>
,但沒有運氣無論是。什麼是實現這一目標的最佳方式?
完美,謝謝! –