我不知道为什么这个简单的事情不起作用。
请帮我。
function showDivs(activediv) {
$("#tabs > div").hide();
$(activediv).show();
}
//while activediv is a
showDivs($(this).attr("href"));
我不知道为什么这个简单的事情不起作用。
请帮我。
function showDivs(activediv) {
$("#tabs > div").hide();
$(activediv).show();
}
//while activediv is a
showDivs($(this).attr("href"));
你的 div id 是
<div id="#2013-04-20">#2013-01-02 content</div>
选择器变成
$('#2013-04-20').show(); //which is selecting a div with "id='2013-04-20'"
并且由于您#
在 id 前面.. 选择器将无法找到该元素
所以试试这个
<div id="2013-04-20">#2013-01-02 content</div> //remove the # in id
<div id="2013-03-20">#2013-03-20 content</div> //remove the #
是的,最好避免 id 以数字开头....