我已经尝试了一切,但是简单的jquery函数就像没有在我的jsp页面上运行
代码:
<input type="button" id="expand3" value="Hide"/> <div id="result3">hide this</div>
jquery代码:
$("#expand3").click(function(){
$("#result3").hide();
});
jquery代码位于主页面上,要隐藏的测试位于从主页调用的页面上
还有一件事......以下是主页上的代码
`if(probTitleKBaseId!=&#34;&#34;) kbaseId =的document.getElementById(&#34; appProbTitle&#34)。值;
var contextPath ="/"+(window.location+" ").split("/")[3];
document.getElementById("KBInfo").innerHTML="";
document.getElementById("message").style.display="";
makeHttpRequest(contextPath+"/jsp/knowledgeBase/kbResults.jsp?app="+app+"&env="+env+"&ptitle="+ptitle+"&kbaseId="+kbaseId,getResponse,false);
`
我没有通过AJAX调用kbresults.jsp
页面,按钮被放置在此页面上,这可能是原因
答案 0 :(得分:0)
您应该导入jquery libary。
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>