我试图用jquery在textarea字段中设置一个值,代码如下:
$("textarea#ExampleMessage").attr("value", result.exampleMessage);
问题是,一旦这段代码执行,它不改变文本区域的文本?
然而,当执行警报($("textarea#ExampleMessage").attr("value")),新设置的值返回?
我试图用jquery在textarea字段中设置一个值,代码如下:
$("textarea#ExampleMessage").attr("value", result.exampleMessage);
问题是,一旦这段代码执行,它不改变文本区域的文本?
然而,当执行警报($("textarea#ExampleMessage").attr("value")),新设置的值返回?
当前回答
通过jQuery编辑文本区域内的文本使用$(id).html。
<textarea id="descricao2" name="descricao2" class="form" style="width:600px;height: 130px;"></textarea>
$("#descricao2").html("hello");
其他回答
我认为这是可行的:
$("textarea#ExampleMessage").val(result.exampleMessage);
您甚至可以使用下面的代码片段。
$("textarea#ExampleMessage").append(result.exampleMessage);
文本区域没有值。jQuery .html()在这种情况下工作
$("textarea#ExampleMessage").html(result.exampleMessage);
通过jQuery编辑文本区域内的文本使用$(id).html。
<textarea id="descricao2" name="descricao2" class="form" style="width:600px;height: 130px;"></textarea>
$("#descricao2").html("hello");
要设置编码HTML的textarea值(显示为HTML),您应该使用. HTML (the_var),但如前所述,如果您尝试并再次设置它可能(很可能)将无法工作。
你可以通过清空文本区域的.empty(),然后再次设置。html(the_var)来修复这个问题。
这是一个工作的JSFiddle: https://jsfiddle.net/w7b1thgw/2/
jQuery(function($){ $('.load_html').click(function(){ var my_var = $(this).data('my_html'); $('#dynamic_html').html( my_var ); }); $('#clear_html').click(function(){ $('#dynamic_html').empty(); }); }); <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <textarea id="dynamic_html"></textarea> <a id="google_html" class="load_html" href="#" data-my_html="<a href="google.com">google.com</a>">Google HTML</a> <a id="yahoo_html" class="load_html" href="#" data-my_html="<a href="yahoo.com">yahoo.com</a>">Yahoo HTML</a> <a id="clear_html" href="#">Clear HTML</a>