にコンテンツをコピーする方法を、私は、ユーザーが、私が各応答(クラス「quoteMsg」)にボタンを追加したいと思います回答jqueryのは - テキストエリア
を追加することができますテキストエリアのフォームを持っています。それをクリックすると、返信内容をコピーしますテキストエリア(名前=「MSGTEXT」)に+作家名+日付(SPANタグ内)(クラス=「ReplyMsgと」を持っている)+コンテンツ
の前と後に「$」メモを追加ここでは、HTMLの例です:
<script>
$('.quoteMsg').click(function()
{
var msgContent = parents("article").find(".replyMsg").val();
//alert(msgContent);
})
</script>
:
<form method="post" action='index.php' id="submitReply">
<p><textarea name="msgText"></textarea> <span></span></p>
</form>
<section class="replyBox">
<article class="left">
<header>
<h2>Re: Voucher Release Prblm - Comm</h2>
<span>By esther <strong>»</strong> 21-10-2014 12:06</span>
<a href="#" class='quoteMsg'>Quote</a>
</header>
<div class="replyMsg">
If will happen again, I will open a new track<br />
</div>
</article>
</section>
<section class="replyBox">
<article class="left">
<header>
<h2>Re: Voucher Release Prblm - Comm</h2>
<span>By esther <strong>»</strong> 23-07-2014 11:19</span>
<a href="#" class='quoteMsg'>Quote</a>
</header>
<div class="replyMsg">
OK, thanks
</div>
</section>
は、私はこのような何かをすべきか?もしそうなら、 - 私はどのようにテキストエリアの中に入れますか?
ありがとう!あなたは、 "見積もり"ボタンをクリックするだけで私のページを一番上に飛び越えることはできません。 – roi