在使用jQuery文本功能时,我正在研究Google Chrome中的一种奇怪行为:
$(document).ready(function () {
$("#btnSubmit").click(function () {
var t = $('#txtMessage').text();
alert(t); //this shows nothing in Google Chrome, but works in IE9
});
});
当我将var t = $('#txtMessage').text();
更改为var t = $('#txtMessage').val();
时,它可以在Chrome中使用。
那么,text()函数有什么问题?
PS:txtMessage是textarea