Uniting Communities Through the Love of Basketball

Golden Dragon Basketball League is dedicated to empowering players, fostering teamwork, and building lifelong connections within the Chinese community.

Golden Dragon Basketball League

Our Mission

To become the leading Asian basketball organization in Bay Area

Golden Dragon Basketball League was founded to promote basketball within the Chinese community, offering a platform for players of all levels to develop their skills, compete passionately, and create meaningful connections

Our Values

Teamwork

Collaboration builds stronger teams and better communities.

Passion

Basketball is more than a game; it’s a way of life.

Inclusion

Everyone is welcome, from beginners to experienced players.

Be Part of the Game Be Part of the Community

Our Sponsorship

Subscribe to our newsletter to be in touch with latest news.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
// 搜尋功能 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'; } }); });