Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > PHP > PHP Forum > มีใครใช้ tinyeditor บ้างครับอยากจะสอบถามหน่อยว่าทำไมผม POST ค่าไม่ได้



 

มีใครใช้ tinyeditor บ้างครับอยากจะสอบถามหน่อยว่าทำไมผม POST ค่าไม่ได้

 



Topic : 085509



โพสกระทู้ ( 140 )
บทความ ( 0 )



สถานะออฟไลน์




พอดีผมได้ไปโหลด text editor ตัวนี้มาใช้ครับ

http://www.scriptiny.com/2010/02/javascript-wysiwyg-editor/

เมื่อผมลอง $_POST ค่า มันไม่สามารถ POST ได้ครับจะต้องกด มุมขวาล่างจึงจะ POST ติดเลยอยากรู้สาเหตุครับ

Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link rel="stylesheet" href="tinyeditor.css">
<script src="tiny.editor.packed.js"></script>
</head>
<?
if($_GET['action']=='save')
{
	print $_POST['tinyeditor'];
}
?>
<body>
<form id="form1" name="form1" method="post" action="test.php?action=save">
  <textarea name="tinyeditor" id="tinyeditor" cols="45" rows="5"></textarea>
  <script>
var editor = new TINY.editor.edit('editor', {
	id: 'tinyeditor',
	width: 584,
	height: 175,
	cssclass: 'tinyeditor',
	controlclass: 'tinyeditor-control',
	rowclass: 'tinyeditor-header',
	dividerclass: 'tinyeditor-divider',
	controls: ['bold', 'italic', 'underline', 'strikethrough', '|', 'subscript', 'superscript', '|',
		'orderedlist', 'unorderedlist', '|', 'outdent', 'indent', '|', 'leftalign',
		'centeralign', 'rightalign', 'blockjustify', '|', 'unformat', '|', 'undo', 'redo', 'n',
		'font', 'size', 'style', '|', 'image', 'hr', 'link', 'unlink', '|', 'print'],
	footer: true,
	fonts: ['Verdana','Arial','Georgia','Trebuchet MS'],
	xhtml: true,
	cssfile: 'custom.css',
	bodyid: 'editor',
	footerclass: 'tinyeditor-footer',
	toggle: {text: 'source', activetext: 'wysiwyg', cssclass: 'toggle'},
	resize: {cssclass: 'resize'}
});
</script>
  <label>
  <input type="submit" name="button" id="button" value="Submit" />
  </label>
</form>
</body>
</html>


1.รูปแรกไม่ได้กดปุ่ม source กด Submit POST ค่าไม่ติด

1


2.รูปสอง กดปุ่ม source กด Submit แล้ว POST ค่าได้

2



Tag : PHP, jQuery









ประวัติการแก้ไข
2012-10-16 22:28:43
2012-10-16 22:31:29
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2012-10-16 22:17:44 By : zinlucifer View : 1294 Reply : 6
 

 

No. 1



โพสกระทู้ ( 1,322 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


ลองเช็คค่าก่อนจะส่งไป save อ่ะครับ
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link rel="stylesheet" href="tinyeditor.css">
<!-- jQuery latest version -->
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
	$("#button").click(function(){
		var tinyeditor = $("#tinyeditor").val();
		alert(tinyeditor);
	});
});
</script>

<script src="tiny.editor.packed.js"></script>
</head>
<?
if($_GET['action']=='save')
{
	print $_POST['tinyeditor'];
}
?>
<body>
<form id="form1" name="form1" method="post" action="test.php?action=save">
  <textarea name="tinyeditor" id="tinyeditor" cols="45" rows="5"></textarea>
  <script>
var editor = new TINY.editor.edit('editor', {
	id: 'tinyeditor',
	width: 584,
	height: 175,
	cssclass: 'tinyeditor',
	controlclass: 'tinyeditor-control',
	rowclass: 'tinyeditor-header',
	dividerclass: 'tinyeditor-divider',
	controls: ['bold', 'italic', 'underline', 'strikethrough', '|', 'subscript', 'superscript', '|',
		'orderedlist', 'unorderedlist', '|', 'outdent', 'indent', '|', 'leftalign',
		'centeralign', 'rightalign', 'blockjustify', '|', 'unformat', '|', 'undo', 'redo', 'n',
		'font', 'size', 'style', '|', 'image', 'hr', 'link', 'unlink', '|', 'print'],
	footer: true,
	fonts: ['Verdana','Arial','Georgia','Trebuchet MS'],
	xhtml: true,
	cssfile: 'custom.css',
	bodyid: 'editor',
	footerclass: 'tinyeditor-footer',
	toggle: {text: 'source', activetext: 'wysiwyg', cssclass: 'toggle'},
	resize: {cssclass: 'resize'}
});
</script>
  <label>
  <input type="submit" name="button" id="button" value="Submit" />
  </label>
</form>
</body>
</html>


ผมไม่เคยใช้ tinyeditor ครับ

แต่อยากแนะนำ http://ckeditor.com/ ครับ ^^ ลองพิจารณาเป็นทางเลือกนะครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-10-17 01:10:07 By : pokultra
 


 

No. 2



โพสกระทู้ ( 464 )
บทความ ( 0 )



สถานะออฟไลน์
Twitter Facebook Hi5

นั่งแก้ใก้หลายรอบเลย
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Untitled Document</title>
        <link rel="stylesheet" href="tinyeditor.css">
            <!-- jQuery latest version -->
            <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
            <script type="text/javascript">
                $(document).ready(function(){
                   $("#button").click(function(){
                        editor.post();
                    });
                });
            </script>

            <script src="tiny.editor.packed.js"></script>
    </head>
    <body>
        <form method="post" action="result.php?action=save" >
            <textarea name="tinyeditor" id="tinyeditor" cols="45" rows="5"></textarea>
            <script>
                var editor = new TINY.editor.edit('editor', {
                    id: 'tinyeditor',
                    width: 584,
                    height: 175,
                    cssclass: 'tinyeditor',
                    controlclass: 'tinyeditor-control',
                    rowclass: 'tinyeditor-header',
                    dividerclass: 'tinyeditor-divider',
                    controls: ['bold', 'italic', 'underline', 'strikethrough', '|', 'subscript', 'superscript', '|',
                        'orderedlist', 'unorderedlist', '|', 'outdent', 'indent', '|', 'leftalign',
                        'centeralign', 'rightalign', 'blockjustify', '|', 'unformat', '|', 'undo', 'redo', 'n',
                        'font', 'size', 'style', '|', 'image', 'hr', 'link', 'unlink', '|', 'print'],
                    footer: true,
                    fonts: ['Verdana','Arial','Georgia','Trebuchet MS'],
                    xhtml: true,
                    cssfile: 'custom.css',
                    bodyid: 'editor',
                    footerclass: 'tinyeditor-footer',
                    toggle: {text: 'source', activetext: 'wysiwyg', cssclass: 'toggle'},
                    resize: {cssclass: 'resize'}
                });
            </script>
            <label>
                <button  id="button" >Submit</button>
            </label>
        </form>
    </body>
</html>




ประวัติการแก้ไข
2012-10-17 02:41:20
2012-10-17 02:54:13
2012-10-17 02:54:22
2012-10-17 03:19:53
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-10-17 02:40:36 By : dekkuza
 

 

No. 3



โพสกระทู้ ( 464 )
บทความ ( 0 )



สถานะออฟไลน์
Twitter Facebook Hi5

ปัญหาคือข้อมูลมันยังไม่โยนใส่ textarea ที่ชื่อ tinyeditor ครับ
คุณต้องใช้ editor.post(); ก่อนถึงส่งข้อมูลได้ครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-10-17 03:47:36 By : dekkuza
 


 

No. 4



โพสกระทู้ ( 140 )
บทความ ( 0 )



สถานะออฟไลน์


ขอบคุณทุกท่านมากครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-10-17 08:23:01 By : zinlucifer
 


 

No. 5



โพสกระทู้ ( 464 )
บทความ ( 0 )



สถานะออฟไลน์
Twitter Facebook Hi5

ตอบความคิดเห็นที่ : 4 เขียนโดย : zinlucifer เมื่อวันที่ 2012-10-17 08:23:01
รายละเอียดของการตอบ ::
มาขอบคุณน่ะทำได้ยัง ทำไมไม่บอก

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-10-17 09:41:48 By : dekkuza
 


 

No. 6



โพสกระทู้ ( 140 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 5 เขียนโดย : dekkuza เมื่อวันที่ 2012-10-17 09:41:48
รายละเอียดของการตอบ ::
ทำได้แล้วครับขอบคุณมากครับ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-10-17 14:06:08 By : zinlucifer
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : มีใครใช้ tinyeditor บ้างครับอยากจะสอบถามหน่อยว่าทำไมผม POST ค่าไม่ได้
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่