我在显示来自
标记到弹出窗口,我遇到引用错误,我可以参考 p 标记,直到我使用我的 .click 函数显示 p 标记,我只需要帮助在 click 函数之后获取显示的 p 标记并将其输出到我的悬停弹出功能这里是我的代码。
$('.Article h1 a').click(function(event) {
event.preventDefault();
$(this.parentNode).next('p').fadeToggle(1000);
$(this.parentNode).next('p').hover(function() {
var paragraph = $(this).next('p').text();
$('#pop-up').find('h3').append(paragraph);
$('#pop-up').show();
}, function() {
$('#pop-up').hide();
});
});
这是 HTML 代码:
<div id="content">
<div class="column">
<div class="Article">
<img src="images/SteveJobs.png" alt="Steve Jobs" Title="SteveJobs" />
<h1><a href="#"> Computers changed Forever</a></h1>
<p> The Brilliant Mind of Steve Jobs. </p>
<a href="#" id="trigger">this link</a>
<!-- HIDDEN / POP-UP DIV -->
<div id="pop-up">
<h3>Pop-up div Successfully Displayed</h3>
</div>
</div>