現在、次のコードを使用してmysqlレコードを編集するためのダイアログボックスを表示していますが、私の問題は、ダイアログボックスを表示するために使用するボタンがwhileループを通過して、任意のレコードを編集できるようにすることですが、何が起こっているのですか?一番上のボタンでダイアログボックスが表示されますが、2番目と3番目などで、なぜこれが発生するのかを理解しました。これは、すべて同じ「id」を持っているためですが、私の質問は、何百ものダイアログボックスを書き込まずにボタンのいずれかをクリックすると、ダイアログボックスが表示されます。
$( "#edit" ).dialog({
autoOpen: false,
draggable: false,
modal: true,
width: "322",
buttons: {
"Add to Log": function() {
$( this ).dialog( "close" );
},
Exit: function() {
$( this ).dialog( "close" );
}
}
});
$( "#editi" ).click(function() {
$( "#edit" ).dialog( "open" );
return false;
});
</script>
<button id="editi">Edit</button> // normally goes thru a while loop and is reapeted 5 or 6 times but only the frist one genrated works
<div class="edit" id="edit" title="Edit Entry" style="font-size:15px">
<p>hello</p>