我用这种方式显示一个弹出式div
<a href="<?php echo is_user_logged_in() ? '#ask-question-div' : '#login' ?>" class="open-question-popup">Ask Question</a>
当点击类'open-question-popup'的锚点时,几个锚点共享相同的弹出窗口,所以它们都有相同的锚码,问题是我想将每个父div的标题发送到单击相应的锚元素时,弹出窗口(#ask-question-div)将显示为标题。
答案 0 :(得分:0)
此处显示的相关html是一种通用方法
$('.open-question-popup').on('clcik', function(){
// `this` is the `<a>` event occurred on
var title = $(this).closest('div').attr('title');// not clear where value should come from
$('#ask-question-div').find(someElement).text(title);//not clear where to put it
})