<div id="id1" class="desc">Hello World 1</div>
<div id="id2" class="desc">Hello World 2</div>
<div>test</div>
document.ready では、
$(function(){
var $dvObj = $('div.desc');
alert($dvObj[0]);
alert($dvObj[0].text()); //Nothing comes up
alert($dvObj[0].html()); //Nothing comes up
});
div html を取得できません。Plsは提案します。