1

ドロップダウンリストを作成しました。これは別のページでうまく機能しています。 正常

ただし、jQuery.post()PPページのテーブルに出力するために使用すると、ドロップダウンリストから内容が不足します。 異常な

私が使用しているjQueryは次のようになります。

<script>
function showestate(){
$.post('admin/page/ur/showestate.php',{ 
zid: document.getElementById('zone').value

},
function(output){
$('#showestate').html(output);
}); 
}
showestate();
</script>

<div id='showestate'>
    </div>

助けてください!ありがとう!

ドロップダウンリストは次のようになります。

<?php
include "../../db.php";
session_start();

?>
<select name="estate" id="estate" />
<?php
$sql_sel_estate = "select * from [estate]";
$result_sel_estate = mssql_query($sql_sel_estate, $conn);
while ($record_sel_estate = mssql_fetch_array($result_sel_estate))
{
$estateid = $record_sel_estate['estateid'];
$estatename = $record_sel_estate['estatename'];
$estatenameen = $record_sel_estate['estatenameen'];
$estatezoneid = $record_sel_estate['estatezoneid'];
$estatecode = $record_sel_estate['estatecode'];

?>

<option value="<?=$estateid?>">
<?=$estatenameen?><br>
</option>
<?php
}
?>
</select>
4

1 に答える 1

1

何が戻ってくるかを確認/警告する必要がありますoutput

含まれている必要があります

<option>option 1</option>
<option>option 2</option>
<option>option 3</option>

つまり、オプションのみです。他のhtmlはありません。他には何もありません。

<select>また、idで要素を作成しますshowestate。htmlを追加するときに、divに他のIDを指定できます。showestate

于 2012-05-12T12:01:06.570 に答える