Class names can't have spaces in them. What you have there is two classes:
<div class="panel current">
This div has two classes: panel and current. That's easily selected:
$("div.panel.current")...
That means select all divs that have class panel and class current.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…