<html>
<head>
<script type="text/javascript" src="jquery-1.5.2.min.js"></script> <script>
$(function() {
$("#test").click(function() {
var tmp = $(this).get().innerHTML;
alert(tmp);
});
})
</script></head><body>
<div id="test">aaa</div>
</body>
</html> 
jQuery的get()方法不是获取的是DOM元素吗,为什么这段代码弹出的是undefined?谢谢!