Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你的代码:
$(document).ready(function(){ $('#mainlynav a[href="#"]').click(function(){ var url = $(this).next('.subnavul').find('a').first().attr('href'); if(url) { document.location.href = url; return false; } }); });