JQuery tabs in JSP
I am having difficulties finding a basic example of using jquery with jsp in 开发者_JAVA百科NetBeans. Anyone have a resource bookmarked?
thanks
JSP is just a server side view technology which provides a template to write plain HTML/CSS/Javascript in and enables interaction with the "back-end" Java code in flavor of taglibs (with JSTL as well known example) and EL (Expression Language).
jQuery is "just" a Javascript library. You can just handle it as you usually do with Javascript. Every tutorial which you find about jQuery can perfectly be applied on a JSP page. If you actually have a hard understanding in what JSP is and how to let it "interact" with Javascript/jQuery, then you may find this article useful to get started.
精彩评论