|
|
|
เจอปัญหา ckeditor มี textarea มากกว่า 1 เวลาดึงข้อมูลแบบ post แล้วเป็น 0 ครับ |
|
|
|
|
|
|
|
้html
Code
<textarea name="description_th" id="des_th"></textarea>
<textarea name="description_en" id="des_en"></textarea>
่javascript
Code (JavaScript)
$('textarea').each( function() {
CKEDITOR.replace( $(this).attr('id'), {
toolbar :
[
{ name: 'basicstyles', items : [ 'Bold','Italic','Strike','-','RemoveFormat' ] },
{ name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent'] },
{ name: 'styles', items : [ 'FontSize' ] },
{ name: 'colors', items : [ 'TextColor','BGColor' ] },
{ name: 'links', items : [ 'Link','Unlink','Anchor' ] },
{ name: 'tools', items : [ 'Maximize' ] },
{ name: 'source', items : [ 'Source' ]}
]
});
});
ตอน submit form แล้วใช้ $_POST['description_en'] มันไม่มีค่ามาอะครับ ขอคำแนะนำด้วยครับ
ขอบคุณครับ
Tag : PHP, JavaScript, jQuery
|
ประวัติการแก้ไข 2014-04-13 20:33:44
|
|
|
|
|
Date :
2014-04-13 19:14:30 |
By :
fogza |
View :
858 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปกติแล้วการอ่าน $_POST['description_en'] มันเป็นพื้นฐานมาก ถ้า name ถูกก็น่าจะมีค่า นอกจากจะไม่มีค่าส่งมาครับ
|
|
|
|
|
Date :
2014-04-17 09:59:00 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดึงข้อมูลมาแล้ว ข้อมูลบันทึกเป็นค่า "0" หรือ"ไม่บันทึก"ครับ
ผมเคยเป็นแต่แบบ มันไม่บันทึกค่าให้เลยนะ แต่มานั่งไล่ใหม่ ก็หาย เก็บค่าได้ จนตอนนี้ใช้editorตัวนี้เข้ามาในงานประจำ
แนะนำว่าให้ไล่ใหม่ดู ถ้างง ก็ลองเปลี่ยน V.ของ เจ้า ckeditor ตัวนี้ดูครับ
อันนี้งานผมที่กำลังทำอยู่เลย ดึงข้อมูลจากฐานข้อมูลมาแก้ไข โดยแก้ไขใน ckeditor
Code (PHP)
<textarea name="his_detailth" class="ckeditor" id="ckeditor" cols="32"><?php echo htmlentities($row_Recordset1['his_detailth'], ENT_COMPAT, 'utf-8'); ?></textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'ckeditor',{
height : 400,
width : 700, });
//]]>
</script>
คือแบบว่า มี txtbox กี่อัน ก็ใส่สคริปคุมให้มันใหม่ ทุกอัน (งานผมขนาด textbox ในหน้าเดียวกันต่างกัน)
....
อ่าห์ ค้นเจอพอดี ผมทำตามบทความอันนี้ครับ รู้สึกเหมาะกับงานผมดี
http://nikhorn.blogspot.com/2012/12/ckeditor.html
|
|
|
|
|
Date :
2014-04-17 10:35:26 |
By :
benzsara |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|