惠我有一個AJAX調用,它不工作,我不知道爲什麼
我的Ajax調用
function insertData(icompany,iproduct,iavailability,irelatedInformation,ishortageReason,idateUpdated)
{
alert('here')//comes here just once but i have a loop which calls insertData function
$.ajax({
url: '../includes/drugShortage.php',
data: {
action:'insert' ,
company: '\'' + icompany +'\'',
product: '\'' + iproduct+'\'',
availability: '\'' + iavailability+'\'',
relatedInformation: '\'' + irelatedInformation+'\'',
shortageReason: '\'' + ishortageReason+'\'',
dateUpdated: '\'' + idateUpdated+'\''
},
success: function(e)
{
alert(e);
},
error:function(e)
{
alert(e);
},
type:GET
});
}
我不知道是什麼造成這一點。
你沒有循環,所以它沒有循環。 –
alert('here'); ?循環在哪裏? –
你的控制檯說什麼? 「drugShortage.php」是怎麼樣的? – Sergio