San Jose

Broncos win

Oct. 24, 2024

Bay Area Broncos
47
45
Moral Bottom Line

Team

Q1

Q2

Q3

Q4

OT

Total

Bay Area Broncos

47

Moral Bottom Line

45

Player of the Game

Name

Pts

Reb

ASts

Stls

Blks

EFF

Kevin

Box Score

Bay Area Broncos

Player

Pts

2PM

2PA

2P%

3PM

3PA

3p%

FTM

FTA

FT%

ORB

DRB

TRB

AST

STL

BLK

TOV

EFF

No items found.

Box Score

Moral Bottom Line

Player

Pts

2PM

2PA

2P%

3PM

3PA

3p%

FTM

FTA

FT%

ORB

DRB

TRB

AST

STL

BLK

TOV

EFF

No items found.
Play Icon
// 搜尋功能 document.getElementById('searchInput').addEventListener('input', function () { const filter = this.value.toLowerCase(); const items = document.querySelectorAll('Players Detail'); items.forEach(item => { const name = item.querySelector('.Name').innerText.toLowerCase(); if (name.includes(filter)) { item.style.display = 'block'; } else { item.style.display = 'none'; } }); }); // 篩選功能 document.getElementById('teamFilter').addEventListener('change', function () { const selectedTeam = this.value.toLowerCase(); const items = document.querySelectorAll('Players Detail'); items.forEach(item => { const team = item.querySelector('Team').innerText.toLowerCase(); if (selectedTeam === 'all' || team === selectedTeam) { item.style.display = 'block'; } else { item.style.display = 'none'; } }); });