我在HTML中使用文本區域標記,我必須在單獨的行中打印成分,但即使在使用回車鍵時,它將在單行中,當我將文本區域的值傳遞給一個變量並打印出來。使用文本區域在多行顯示文本
以下是我的代碼片段:
<div data-role="fieldcontain">
<label for="name">Ingredients</label>
<textarea rows="4" cols="50" id="new_ingredients">
</textarea>
</div>
$('#new_recipe').live('pagebeforeshow',function(event){
var temp1 = $("#new_ingredients").val();
$("#testing").text(temp1);
});
<div data-role="page" id="new_recipe">
<div class="content" id="testing" ></div>
</div>
請幫我,我怎麼能得到不同的行數據時,用戶按下提前進入key.Thank你。
僅供參考生活()的支持與當前版本的http:// API。 jquery.com/live/ – swapnesh 2013-04-09 06:35:52
看看這個:http://stackoverflow.com/questions/863779/textarea-line-breaks-javascript – 2013-04-09 06:37:11