使用Jquery参考代码获取Text Area字段值

时间:2013-09-03 12:21:37

标签: jquery

您好我有以下代码示例我想找出文本区域字段值

<span dir="none"><span dir="ltr">
<textarea name="ctl00$m$g_547673d5_a6d6_4c03_aa47_d9ad28312f65$ff161$ctl00$ctl00$TextField"
    rows="6" cols="20" id="ctl00_m_g_547673d5_a6d6_4c03_aa47_d9ad28312f65_ff161_ctl00_ctl00_TextField"
    title="Description" class="ms-long" dir="none"></textarea>
<input name="ctl00$m$g_547673d5_a6d6_4c03_aa47_d9ad28312f65$ff161$ctl00$ctl00$TextField_spSave"
    type="HIDDEN" id="ctl00_m_g_547673d5_a6d6_4c03_aa47_d9ad28312f65_ff161_ctl00_ctl00_TextField_spSave">

我试过了    var test = $('textarea [Title =“Description”]')。val();    和    var test = $(#ID).val();

所以请帮助我。 谢谢, Digambar K

3 个答案:

答案 0 :(得分:1)

如果您使用的是asp.net和jquery,因为看起来您喜欢使用asp.net

使用

var textareaValue=$('#<%=textareaelementId.ClientId%>').val();

答案 1 :(得分:0)

使用

     var thought = $('textarea[name=ctl00$m$g_547673d5_a6d6_4c03_aa47_d9ad28312f65$ff161$ctl00$ctl00$TextField]').val();

OR

     var thought = $('#ctl00_m_g_547673d5_a6d6_4c03_aa47_d9ad28312f65_ff161_ctl00_ctl00_TextField').val();

答案 2 :(得分:0)

试试这个

$(function(){
    $("#ctl00_m_g_547673d5_a6d6_4c03_aa47_d9ad28312f65_ff161_ctl00_ctl00_TextField").change(function(){ 
      alert($("#ctl00_m_g_547673d5_a6d6_4c03_aa47_d9ad28312f65_ff161_ctl00_ctl00_TextField").val());

    });
});

Demo