此代码是在 VS 2003 -asp.net 中编写的
在 HTML 页面中,我定义了一个返回布尔值的 javascript 函数checkuser() 。我想在对该函数的调用中附上以下内容
<A onclick="stageClear(); stageEditor();" href="javascript: void(0);">Add new Stage</A>
我想要类似的东西
<%if checkuser() then%>
<A onclick="stageClear(); stageEditor();" href="javascript: void(0);">Add new Stage</A>
<% end if %>
但我收到错误 checkuser() 未定义