|
|
|
@ -160,6 +160,7 @@ We never pass your information onto a third party. After submitting this form y
|
|
|
|
|
$(function(){
|
|
|
|
|
//目的地选择效果
|
|
|
|
|
$('.destinations li').click(function(){
|
|
|
|
|
$('#destinations').tooltip('hide');
|
|
|
|
|
if($(this).hasClass('checked')){
|
|
|
|
|
$(this).removeClass('checked');
|
|
|
|
|
}else{
|
|
|
|
@ -180,6 +181,7 @@ $(function(){
|
|
|
|
|
|
|
|
|
|
//Hotel style选择效果
|
|
|
|
|
$('.hotelStyle li').click(function(){
|
|
|
|
|
$('#hotelStyle').tooltip('hide');
|
|
|
|
|
if($(this).hasClass('checked')){
|
|
|
|
|
$(this).removeClass('checked');
|
|
|
|
|
$('input[name="hotelStyle"]').val('');
|
|
|
|
@ -190,6 +192,37 @@ $(function(){
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//---------------------------------------隐藏提示信息------------------------------------------------------
|
|
|
|
|
$('#additionalrequirements').click(function(){
|
|
|
|
|
$('#additionalrequirements').tooltip('hide');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#Title').click(function(){
|
|
|
|
|
$('#Title').tooltip('hide');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#Date_Start').click(function(){
|
|
|
|
|
$('#Date_Start').tooltip('hide');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#Firstname').click(function(){
|
|
|
|
|
$('#Firstname').tooltip('hide');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#Lastname').click(function(){
|
|
|
|
|
$('#Lastname').tooltip('hide');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#Nationality').click(function(){
|
|
|
|
|
$('#Nationality').tooltip('hide');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#email').click(function(){
|
|
|
|
|
$('#email').tooltip('hide');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//------------------------------------隐藏提示信息------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
$('input[name="Nationality"]').bind("input propertychange change",function(event){
|
|
|
|
|
if($(this).val() == 'United States'){
|
|
|
|
|
$("#PhoneNo").val('+1');
|
|
|
|
|