<style>
body {font-family: Arial, Helvetica, sans-serif;}h1 {font-size: 24px;margin-bottom: 10px;}h2 {font-size: 18px;margin-bottom: 10px;}p {margin-bottom: 10px;}ul {list-style-type: none;padding: 0;}li {display: inline-block;margin-right: 10px;}a {text-decoration: none;}
球 籃球 棒球 網(wǎng)球 高爾夫 橄欖球 曲棍球 拳擊 賽車
有了我們個(gè)性化的直播推薦,您將再也不會(huì)錯(cuò)過(guò)任何精彩的體育賽事?,F(xiàn)在就開(kāi)始,讓您的體育癮得到充分滿足!
<script>const form = document.getElementById('form');const result = document.getElementById('result');form.addEventListener('submit', (e) => {e.preventDefault();const sports = [...document.querySelectorAll('input[name="sports[]"]:checked')].map(input => input.value);const teams = document.querySelector('input[name="teams"]').value;const time = document.querySelector('select[name="time"]').value;const data = {sports,teams,time};fetch('YOUR_API_ENDPOINT', {method: 'POST',headers: {'Content-Type': 'application/json'},body: JSON.stringify(data)}).then(res => res.json()).then(data => {result.innerHTML = `您的個(gè)性化直播日程安排:
- ${data.map(item => `
- ${item.sport} - ${item.team} - ${item.time} `).join('')}