我正在使用通过CDN加载的Twitter Bootstrap为我的Rails 4应用程序,当点击应加载模式的按钮时,没有任何反应。如果我尝试通过jQuery触发模态我得到错误:未捕获TypeError:undefined不是函数。这是我的代码:
.container
.row
.col-sm-12
%h1 Manage Team
.pull-right
%a.btn.btn-success#addUserBtn{ data: { toggle: :modal, target: '#new_user' } }
Add
模态:
#new_user.modal.fade
.modal-dialog
.modal-content
.modal-header
%button.close{ type: :button, 'data-dismiss' => 'modal', 'aria-hidden' => 'true' }
×
%h4.modal-title
New Agency
= form_for Agency.new( facilitator_id: current_user.id ) do |f|
.modal-body
.form-group
= f.label :name
= f.text_field :name, class: 'form-control'
.form-group
= f.label :facilitator_id
= f.collection_select :facilitator_id, User.admin, :id, :name, {}, class: 'form-control'
.modal-footer
%button.btn.btn-default{ type: :button, 'data-dismiss' => 'modal' }
Close
= f.submit 'Create', class: 'btn btn-primary'
jQuery的:
$('#addUserBtn').on('click', function() {
console.log('test');
$('#new_user').modal('toggle');
});
答案 0 :(得分:0)
您需要在模式代码中将#new_ 代理商 .modal.fade更改为#new_ 用户 .modal.fade
答案 1 :(得分:0)
这是一个引导问题。当我使用gem而不是CDN加载bootstrap时,一切正常。谢谢你的帮助。