使用jquery和html使用{{}}添加文本

时间:2016-02-09 14:45:16

标签: jquery html symfony twig

我在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+"}}" );

任何帮助,请

enter image description here

1 个答案:

答案 0 :(得分:1)

解决

 $('#textarea').val( "{"+"{"+c+"}"+"}");