我正在建立一个像facebook上的回复系统,用户可以回复其他用户的评论
所以我有这个jquery代码,它在现有列表上面加载一个新的回复。
$(".send-comment").on('keypress',function(event) {...})
问题是$(document).on("click", ".see-replies", function(e) {...})
对使用ajax加载的新内容没有影响,而其他事件就像这样一个
$(document).on('keypress',".send-comment",function(event) {...})
我用来查看回复列表。
我尝试了这两个版本,但没有任何作用
$(document).keypress(".send-comment",function(event) {...})
$(".send-comment").keypress(function(event) {...})
before(:all) { @user = FactoryGirl.create(:user)}
byebug
subject { @user }
it { should respond_to(:email)}
it { should respond_to(:password)}
it { should respond_to(:password_confirmation)}
it { should be_valid }
it { should validate_presence_of(:email) }
it { should validate_confirmation_of(:password) }
it { should allow_value('example@domain.com').for(:email)}
describe 'validations' do
subject { FactoryGirl.create(:user)}
it { should validate_uniqueness_of(:email).case_insensitive}
end
提前感谢您的帮助。