<div id="div">
<p>here is a paragram</p>
<div>here is a big DIV</div>
function showVal(){
var div = $("#div");
alert("showVal(): "+div.val());
//显示为空
function showHtml(){
var div = $("#div");
alert("showHtml(): "+div.html());
//显示为:
//<p>here is a paragram</p>
//<div>here is a big DIV</div>
function showText(){
var div = $("#div");
alert("showText(): "+div.text());
//显示为:
//here is a paragram
//here is a big DIV
}