我有一个div:
<div class="form_result">hello</div>
var mb = $('.form_result').text();
alert("Value of div is: " + mb.value);
警报返回未定义。
尝试了JQuery版本1.9.1和1.8.3 ...同样的结果。
答案 0 :(得分:2)
您不需要.value
alert("Value of div is: " + mb)
.text()获取div中的文字
<小时/>
.value
用于form
等
input,select,radio,checkbox
元素
答案 1 :(得分:1)
alert("Value of div is: " + mb);
喜欢这个