「P」と言うと、ネットを閲覧したこのivの構文がわかりません。PHPに関する複数の検索が返されます。
私がしたいのは、apタグテキストに変数値を入力することですか?
これは私のJqueryです
$('.FOS, .MF, .CW, .OO, .LL, .CO, .TAK, .FCS, .CO').mouseover(function(e) {
var tr = $(this).closest('tr');
var Comments = tr.find('.GeneralComments').text();
if (Comments != "") {
$('div#pop-up').show();
$('p').text == Comments;
} else {
$('div#pop-up').hide();
}
return false;
});
コメントからp.textに値を割り当てようとしていますが、機能しませんか?
これが、pテイクが配置されている私のdivです。
<div id="pop-up">
<h3>
Over all Notes</h3>
<p>
This is where i want the value from comments to appear?
</p>
</div>
どんな助けでもありがたいです、ありがとう。