我在twig中使用jquery将变量添加到textarea。
文本应采用以下格式:{{variable}}
例如
$('#message').change(function(){
var c= $("#message option:selected").text();
// I will add this variable to the text area in the form {{ +c+ }}
// $('#textarea').val(c );
});
在图片中,当我使用nom时,此标题应添加到{{nom}}
形式的文本中,而不只是nom
我试过这个代码baut不起作用
$('#textarea').val("{{"+c+"}}" );
任何帮助,请
答案 0 :(得分:1)
解决
$('#textarea').val( "{"+"{"+c+"}"+"}");