我正在一個網站上工作,我想用圖標來選擇旅行模式, 我有一個工作功能,但它只適用於選擇輸入。 有沒有辦法將其修改爲與按鈕一起使用?按鈕而不是選擇
在此先感謝!
功能:(?)
function calcRoute() {
var selectedMode = document.getElementById("mode").value;
var request = {
origin: thuis,
destination: kabk,
// Note that Javascript allows us to access the constant
// using square brackets and a string value as its
// "property."
travelMode: google.maps.TravelMode[selectedMode]
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
HTML - - 選擇輸入
<select id="mode" onchange="calcRoute();">
<option value="DRIVING">Driving</option>
<option value="WALKING">Walking</option>
</select>
HTML按鈕輸入
<form id="mode">
<input type="button" onchange="calcRoute();" value="DRIVING">
<input type="button" onchange="calcRoute();" value="WALKING">
</form>
(http://whathaveyoutried.com) –