<input type="button" class="btnlarge green-btn marleft5" onclick="UpdateInfo();" value="Update" id="UpdateButton" />
これは私のButttonです。そのボタンをクリックすると機能が呼び出されます。ボタンがIPadで動作していません
function UpdateInfo()
{
var currCheckInID = $("#selectedCheckInId").val();
if(!validateInfo()) return;
try {
var retVal = "";
var urlCreate = "./GenericHandler.ashx?method=UpdateParentInformation&checkInID=" + $("#selectedCheckInId").val() + "&parentLocationID=" + $('#<%= DRPParentLocation.ClientID %>').val() + "&handyPhoneID=" + $('#<%= DRPHandyPhones.ClientID %>').val() + "&cabinNumber=" + $("#txtCabinNo").val() + "&IConciergeNumber=" + $("#txtIConciergeNo").val() + "&childGuestID=" + $("#selectedChildGuestId").val() + "&OldparentLocationID=" + Old_parentlocation + "&OldhandyPhoneID=" + Old_HandyPhone + "&OldcabinNumber=" + Old_CabinNumber + "&OldIConciergeNumber=" + Old_iConciergeNo;
$.ajax({
type: "POST",
url: urlCreate,
contentType: "text/ ",
dataType: "",
success: function (response) {
window.location.reload();
},
error: function() { }
});
}
catch (err) { }
}
ボタンはデスクトップでは完全に機能していますが、IPadでは機能しません。
のために編集
// alert'sは 'UpdateInfo()' '内で動作するようなものですか?フローのさまざまな部分にアラートやその他のインジケータを追加して、各部品が確実に動作するようにしてください。 – Whothehellisthat