ドロップダウンを使用しており、ドロップダウンの変更でjavascriptを呼び出しています.javascriptでjqueryを使用してテーブルクラスの内容を変更しています.今問題は、ドロップダウンを再度変更する必要がある場合です. JavaScript のコンテンツ。
function filterbyaptno(){
var idno = document.getElementById("aplist").value;
alert(idno);
$.ajax({
url:address ,
type: 'POST',
data:"idno="+idno,
success:function(result) {
var numRecords = parseInt(result.rows.length);
if(numRecords>0)
{
var html = '';
for(var i = 0; i<numRecords;i++)
{
html +='<div><table class="support" width="700" cellpadding="10px;">
<tr bgcolor="#E8E8E8"><td width="7";>'+result.rows[i].firstname+'</td>'
+'<td width="350">'+result.rows[i].advicetoowners+'</td>'
+'<td width="7">'+result.rows[i].customdata+'</td><tr></table></div>'
}
$('.detais').replaceWith(html);//here i change the content of div
}
$(function() {
$('.droplist').change(function(){
filterbyaptno();//here i call javascript while dropdown change
});
});
}
}); }
値をドロップダウンするようにコンテンツを適切に変更するにはどうすればよいか、誰かが私に提案できますか