2012-05-10 91 views

回答

6

val():VAL()方法主要用於獲得形式元素,如輸入,選擇和textarea的值。

html():獲取匹配元素集中第一個元素的HTML內容。

text():獲取匹配元素集合中每個元素(包括它們的後代)的組合文本內容。

var description = $('#inputDescription').val(); 
    $('#textdescription').html(description); 

看到演示這裏JsFiddle Demo

0
$("#description").val("something you want to put"); 
0

你必須使用

$('#inputDescription').val(); 

輸入(包括文本域)元素,而不是.html()

這裏是一個jsfiddle example