HTML:
<a href="javascript:void(0);" title="Show and Hide" id="_showhide">
<span id="textsh">hide</span>
<div id="contentsShowHide" style="display:none;">
Contents here
<div>
JavaScript:
function headerShowHide(){
$(document).ready(function(){
$('#_showhide').click(function(){
$('#contentsShowHide').toggle(function(){$("#textsh").text("show")},function(){$("#textsh").text("hide")});
});
});}
<div id="contentsShowHide">
没有显示或隐藏,并且文本没有改变
<span id="textsh">
。我在这里想念什么?