拥有下一个简单的 html 代码:
<div id="content">
This is a test
</div>
我不明白为什么这样可以:
$(function(){
text = 'this is a text';
word = text.split(' ');
alert(word[1])
})
但这不是:
$(function(){
text = $('#content').text();
word = text.split(' ');
alert(word[1])
})
jquery 或者原生javascript,问题是一样的。我希望在这两种情况下都会出现带有相同单词的警报,但只会出现在第一种情况下。我的错误在哪里?
这是我的问题:http: //jsfiddle.net/bbtdf/2/
谢谢!