<!doctype html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.plcxue.com/" />
<title>plc学堂_www.plcxue.com</title> 
<style type="text/css"> 
div
{ 
  height:150px; 
  width:150px; 
  background-color:green; 
  margin-top:10px; 
} 
</style> 
<script type="text/
javascript" src="mytest/jquery/jquery-1.8.3.js"></script> 
<script type="text/javascript"> 
$(document).ready(function(){ 
  $("div").before("<b>  好好学习</b>"); 
}) 
</script> 
</head> 
<body> 
  <div></div> 
</body> 
</html>