0

嗨,我有以下代码示例,我想找出文本区域字段的值,

<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

4

3 回答 3

1

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

利用

var textareaValue=$('#<%=textareaelementId.ClientId%>').val();
于 2013-09-03T12:27:17.337 回答
0

利用

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

或者

     var thought = $('#ctl00_m_g_547673d5_a6d6_4c03_aa47_d9ad28312f65_ff161_ctl00_ctl00_TextField').val();
于 2013-09-03T12:25:47.767 回答
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());

    });
});

演示

于 2013-09-03T12:25:50.320 回答