我在将MySQL数据库中的文本添加到ColorBox中的表单(文本字段)时遇到了一些麻烦。
我现在有这个脚本:
<a href="#" class="bttn sgreen quote1">Quote</a>
var postQuote[<?php echo 4id; ?>]=<?php echo $forum->bb_parse($forumPost['post_text']); ?>;
$(document).ready(function(){
$(".replyBox").colorbox({inline:true, top: 100, overlayClose:false, width:"35%",href:"#addReply"});
});
ColorBox:
<div style="display:none;">
<div id="addReply" style='padding:10px; background:#fff;'>
<form method="post" action="#" class="mainForm">
<label>Your Reply:</label><br /><br />
<textarea rows="10" style="height:320px;width:400px" cols="20" id="bb" name="text"></textarea>
<br />
<div style="text-align:center;">
<button type="submit" class="bttn sgreen" >Post Reply</button>
</div>
</form>
</div>
</div>
当我按下引号时,如何在文本字段中添加“var postQuote”并打开ColorBox?
答案 0 :(得分:0)
$(document).ready(function(){ $("#bb").val(postQuote); $(".replyBox").colorbox({inline:true, top: 100, overlayClose:false, width:"35%",href:"#addReply"}); });