<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>"><title>JQuery DEMO</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<style type="text/css">
div{
width:250px;
height:100px;
border:1px solid blue;
float:left;
padding:10px;
}
span{
margin:3px;
border:1px solid red;
padding:5px;
}
h1,h2{
display:inline;
}
</style>
<!-- jquery.js -->
<script type="text/javascript" src="js/jquery/jquery-1.3.2.js">
</script>
<script type="text/javascript">
$(function(){
// div span
$("div span").css("background","yellow");
// div span
$("div>span").css("background","blue");
// id sp1 span
// $("#sp1 + span").css("border","3px solid black");
//
$("#sp1").next("span").css("border","3px solid black");
// id div1 span
$("#div1 ~ span").css("background","#eeeeee");
//
// $("#div1").nextAll("span").css("background","#eeeeee");
// siblings
$("#div1").siblings("span").css("background","#113344");
});
</script>
</head>
<body>
<span>
SPAN2
</span>
<div id="div1">
<h1>div h1</h1>
</div>
<div>
<h2 >div h2</h2>
</div>
<div>
<span>div span</span>
</div>
<div>
<span>
<span id="sp1">div.div.span1</span>
<span>div.div.span2</span>
</span>
</div>
<span>
SPAN1
</span>
</body>
</html>