San Jose

Brothers win

Oct. 24, 2024

Brothers
64
25
Bay Area Golden Dragon

Team

Q1

Q2

Q3

Q4

OT

Total

Brothers

64

Bay Area Golden Dragon

25

Player of the Game

Name

Pts

Reb

ASts

Stls

Blks

EFF

Box Score

Brothers

Player

Pts

2PM

2PA

2P%

3PM

3PA

3p%

FTM

FTA

FT%

ORB

DRB

TRB

AST

STL

BLK

TOV

EFF

No items found.

Box Score

Bay Area Golden Dragon

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'; } }); });