San Jose

Brothers win

Oct. 31, 2024

Moral Bottom Line
51
53
Brothers

Team

Q1

Q2

Q3

Q4

OT

Total

Moral Bottom Line

51

Brothers

53

Player of the Game

Name

Pts

Reb

ASts

Stls

Blks

EFF

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.

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