0
如何添加到jquery填充的輸入字段的參數值?當我手工輸入內容時,一切正常。出於某種原因,動態添加的值將被忽略。我正在使用Backbone和Rails。如何將輸入字段值附加到參數?
Hamlc模板:
.modal-content
%form.form-signup{name: "session"}
.modal-header
.modal-body
.form-group
%input.form-control.first{name: "email", :placeholder => "#{I18n.t('email')}", type: "text", :autofocus => "", value: "[email protected]"}
.modal-footer
%input#new{type: "submit"}
樣品片骨幹觀點:
render: ->
$(@el).find('input[name=email]').val('[email protected]')
接收空參數:
Parameters: {"user"=>{"email"=>""}}
您的解決方案在* .hamlc模板中不起作用。我會通過jQuery添加動態值然後發送它,但由於某種原因,這個值被忽略。 – luzny