途虎养车最近的店在哪里 (途虎养车最近门店)

上海休闲 04-17 阅读:35 评论:0
途虎养车最近的店在哪里 (途虎养车最近门店)

查找最近的门店

门店列表

Copyright © 2023 途虎养车

javascript // script.js const form = document.getElementById('form-search'); const listStores = document.getElementById('list-stores');form.addEventListener('submit', (e) => {e.preventDefault();const address = document.getElementById('input-address').value;if (!address) {alert('请输入地址!');return;}fetch(`${address}`, {headers: {'Content-Type': 'application/json',},}).then((res) => res.json()).then((data) => {const stores = data.data.stores;if (stores.length === 0) {listStores.innerHTML = '
  • 附近没有门店
  • ';} else {for (const store of stores) {const li = document.createElement('li');li.innerHTML= `

    ${store.name}

    ${store.address}

    电话:${store.phone}

    营业时间:${store.hours}

    `;listStores.appendChild(li);}}}).catch((err) => {console.error(err);alert('请求失败,请重试!');}); });
    版权声明

    本文仅代表作者观点,不代表上海桑拿立场。
    本文系作者授权发表,未经许可,不得转载。