在javascript中单击选项卡时仅加载jsp选项卡内容?
我有一个包含四个选项卡和一个背景图像的 JSP 页面。我希望当我单击其中一个选项卡时,应该调用一个 JSP 函数,该函数只会更新单击的选项卡内容,而不是整个页面和背景图像。类似的例子可以是 ASP.NET 中的 Multiview 控件
I have a JSP page with four tabs and a background image. I want that when I click one of the tab, a JSP function should be invoked that will only update the clicked tab contents not the whole page and background image. A similar example can be the Multiview control in ASP.NET
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ASP.NET 无法与普通 JSP 相比。 JSP 更类似于“经典 ASP”。如果您正在寻找 ASP.NET(-MVC) 的 Java 版本,请查看 JSF。 PrimeFaces 例如有 a
组件 我认为这正是您正在寻找的。在普通 JSP 中,您需要引入一些 JavaScript 代码来执行 Ajax 请求并操作 HTML DOM 和一些 Servlet 以返回必要的数据。 jQuery 或许还有 jQuery UI 可能对此有所帮助。
ASP.NET is not comparable to plain JSP. JSP is more comparable to "Classic ASP". If you're looking for the Java counterpart of ASP.NET(-MVC), look at JSF instead. PrimeFaces for example has a
<p:tabView>
component which I think is exactly what you're looking for.In plain JSP, you'd need to bring in some JavaScript code to execute Ajax requests and manipulate the HTML DOM and some Servlet to return the necessary data. jQuery and maybe jQuery UI may be helpful in this.
没有您的代码,我们将无能为力。
尝试以下代码,将鼠标悬停在其他 div 上时将 div 的内容图像更改为其他图像。经过一些修改,它可能会达到您的要求。
问题链接
With out your codes we are helpless..
Try the following code which changes the content image of a div to some other images on mouse over other divs. With some modifications it may reach up to your requirements.
Link to the question