私はこのHTMLコードをphpコードで生成しています
<tr class="edit_tr">
<td>a1</td>
<td class="edit_td">
<span id=" " class="text"></span>
<input id="144" class="25" type="text" value="">
</td>
<td class="edit_td">
<span id=" " class="text"></span>
<input id="144" class="26" type="text" value="">
</td>
<td class="edit_td">
<span id=" " class="text"></span>
<input id="144" class="27" type="text" value="">
</td>
</tr>
これは私が使用しているJavascriptです:
$(document).ready(function(e) {
$(".edit_tr").click(function(){
var id = $(this).attr("id");
// we have here tow states :#1 and #2
//#1 there is no Id, and thats mean we want to insert to database
if(typeof id == 'undefined'){
$(this).children("td").children("input").change(function(){
var stateId = $(this).attr("class");
var alternativeId = $(this).attr("id");
alert("state is :"+ stateId);
alert("alternativeId is :"+ alternativeId);
//return false;
});
}
//#2 there is an id, so we want to update the value
else{
alert("there is id ");
}
});
});
最初に入力の値を変更したときの問題は正常に機能しますが、もう一度値を変更しようとすると、変更イベントが何度も発生します
助けてください、私はそれを感謝します