我工作的一个网站,我想用图标来选择出行方式,我有一个工作的功能,但它只是一个选择的输入工作。 是否有修改它与按钮使用的方法是什么?
提前致谢!
功能:
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>