我有一个页面显示一些文本。我想隐藏该文本并仅在有人单击链接/按钮时显示它。我尝试使用这个:
<script>
function f()
{
document.getElementById("line").focus();
document.getElementById("help").innerHTML = helptext();
}
$(function(){
$('p[id=help]').hide();
$('a[title=showcmd]').click(function(){
$('p[id=help]').slideIn();
$(this).hide();
f();
});
});
</script>
但它不起作用。