เมื่อส่งค่าตัวแปร .serialize() อ่านค่า ข้อมูลไม่ได้
วิธีแก้ไข
เพิ่มฟังก์ชั่น
function CKupdate(){
for ( instance in CKEDITOR.instances )
CKEDITOR.instances[instance].updateElement();
}
และ ให้ เรียก ฟังก์ชั่นนี้ ก่อนทำการ .serialize()
ตัวอย่าง : เมื่อเราสร้างฟังก์ชั่น การบันทึก ไว้ ให้เรา เติมฟังก์ชั่น CKupdate บรรทัดบนสุด เพื่อเรียกค่าคืนให้กับ ตัวแปร textarea
function test_item(){
CKupdate(); // เรียกค่า texarea คืน
$.post("modules/pretest/test_item.php",( $('#test_form').serialize()));
}
0 comments :
Post a Comment