您好朋友我是PHP的新手,我的疑問是我只是在這個選擇選項中使用mysql腳本創建一個選擇選項,每當我改變select時它有五個值選項值將顯示適當的結果,但值不顯示在ckeditor textarea中。請幫助我如何使用ckeditor.Thanks提前顯示選擇選項值。如何通過使用選擇選項方法在ckeditor中打印db值
<script type="text/javascript">
$(document).ready(function() {
$("#parent").change(function() {
var id=$("#parent").val();
var dataString = 'id='+ id;
$.ajax({
type: "POST",
url: "try_ajax.php",
data: dataString,
cache: false,
success: function(html) {
$("#size").html(html);
}
});
});
});
</script>
和AJAX頁面
<?php
include("connect.php");
echo $_POST['id'];
$erow=mysql_fetch_array($esql);
?>
<html>
<head>
</head>
<body>
<textarea class="ckeditor" name="ck" cols="40" rows="10" ><?php echo $erow['contact_details']; ?></textarea>
</body>
</html>
下拉列表就像
<select id="parent">
<option value="">select</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
<選擇ID = 「父」> <選項值= 「」>選擇 <選項值= 「1」>一 <選項值= 「2」>雙 <選項值=「3 「> – arjun
上面的代碼是我的下拉列表sir.the下拉列表id是parent.and #size是我的結果顯示ID先生。 – arjun
我又增加了一個答案,看看 – Houmam