﻿//行程內容-加入考慮清單
function AddConsider(ltpid) {
	var url = "HandleAction.aspx?Action=AddCons&ltpid=" + ltpid +"&t=" + new Date().getTime();

	$.ajax({
		type: "GET",
		url: url,
		success: function(msg) {
			if(msg>5){alert('考慮清單只保留最後五個行程!!');}
			$('#Consider_'+ltpid).html('[已加入考慮清單]');
		},
		error: function(xhr, ajaxOptions, thrownError) {
			alert(xhr.status);
			alert(thrownError);
		}
	});
	
}

