日期:2014-05-17 浏览次数:20703 次
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>
<script>
$(document).ready(function(){
alert($("#tdId")[0].outerText);
});
</script>
</head>
<body>
<table>
<tr>
<td id="tdId"><Aaa>bbb</Aaa></td>
</tr>
</table>
</body>
</html>