ドロップダウンリストを作成しました。これは別のページでうまく機能しています。
ただし、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>