私はこの問題を解決しようとしています。は2つのjavascript関数を結合します
<h4>Your Itinerary</h4>
<div id="selected"></div>
<script>
(function() {
$(".info-css").on(
'click'
, function (e) {
$('#selected').html(
[
$('#start option:selected').text()
, $('#second option:selected').text()
, $("#datepicker").datepicker("getDate")
, $('#third option:selected').text()
, $("#datepicker2").datepicker("getDate")
, $('#forth option:selected').text()
, $("#datepicker3").datepicker("getDate")
].join("<br> to ")
);
}
);
}());
</script>
コードはこのような何か出力:getDate
だけのショーを持っている)
1:
Your Itinerary
Arenal/la Fortuna
to Cahuita
to Mon Mar 21 2016 00:00:00 GMT-0600 (Central Standard Time (Mexico))
to Bocas del Toro (To/From Costa Rica)
to Thu Mar 24 2016 00:00:00 GMT-0600 (Central Standard Time (Mexico))
to Manzanillo
to Thu Mar 31 2016 00:00:00 GMT-0600 (Central Standard Time (Mexico))
を、私は二つのことをやろうとしている。ここ
コードですMon Mar 21 2016
であり、時間その他のすべてではありません。
2)は、2つの間にon
と1つの文字列に
$('#second option:selected').text()
, $("#datepicker").datepicker("getDate")
を組み合わせます。例については
:へ
Arenal/la Fortuna
:ここ
Cahuita on Mon Mar 21 2016
はテストページです:すべての
http://thecostaricatoursite.tcct-test.com/test/
Java!= Javascript – nnnnnn