我现在要做一个按钮,点一下就可以将一个隐藏的table显示出来,自己写了一个,提示脚本运行出错。哪位大神帮我写一个
能看一下你的错误提示吗?
已经好了,谢谢
<table id="createfile" runat="server" style="visibility:hidden">
function crt_file() {
var createfile = document.getElementById("createfile");
createfile.style.visibility='visible';
}
<table id="createfile" runat="server" style="visibility:hidden">
function crt_file() {
$("#createfile").show();
}
前提得引用jquery