<!DOCTYPE html>
為什麼我在方法外面使用選擇器取值之後傳到方法裡面就變成了空值?
但是我把var show = $("test").html();放到test裡面就能把“百度”打印出來呢?
定義在方法外面之後不是全局變量麼?
<body>
<div id='test'>123</div>
</body>
<script>//script放到body的下面,或者放到jquery的ready裡面,不然dom節點沒初始化完成,取不到值
$('#test').html();
</script>