我有这段代码,但它对我不起作用。
<script>
function read_popup(f_name, l_name){
$(".frist").popover({
html : true,
content: function() {
return $('.popup-read').html();
}
});
}
</script>
<article data-placement="top" class="first" onClick="read_popup('<%= user.first_name %>','<%= user.last_name %>');">
<a title="">
<%= image_tag '/assets/web/img2.png'%>
</a>
</article>
<!-- Pop up -->
<div class="popup-read">
<a class="cross-btn" onClick="close_read_popup();"></a>
<div class="title-box">ravendra kumar</div>
<a class="btn green-btn">READ WITH ME</a><br/><br/>
<a class="btn green-btn disable-btn">REQUEST SENT</a> <!-- Used for disabled button -->
</div> <!-- End Pop up -->
答案 0 :(得分:1)
你的jquery选择器的类名错误
改变这个:
$(".frist")
到:
$(".first")