我的问题是我通过选择从下拉列表中选择删除项目是通过单击按钮,但是当我单击第一个项目时它会正常删除一个项目,而在第二个项目中它将项目两次放在两个记录上! !在第三个中,它将项目分三次放入三个记录......等等。
这是我的代码
//to get the elements by document.ready function//
<script type="text/javascript">
$(document).ready(function(){
$("#DropDownList2").change(function()
{
// button to drop down the record to table//
$('#button1').click(function(){
GetData($("#DropDownList2 option:selected").text());
});
});
});
function GetData(itemName){
$.ajax({
url:'Default2.aspx?brand='+$("#DropDownList1 option:selected").text()+'&item='+itemName+'&itemId='+$("#DropDownList2 option:selected").val()+'',
type:'GET',
success: function(data)
{
if($("#tableContent tr:last").html() == undefined)
{
$("#tableContent").html(data);
}
else{
$("#tableContent tr:last").after(data);
}
}
});
}
答案 0 :(得分:0)
//感谢下面的评论//
$(&#34; #DownDownList2&#34;)。change(function(){}