将数组从数组添加到一个textarea作为段落

时间:2015-03-03 16:04:12

标签: javascript jquery html angularjs

"items":{ "item1":"here is some text that should be paragraph1", "item2":"here is some text that should be paragraph2", "item3":"here is some text that should be paragraph3", }

需要有两个部分: 1.作为单独的段落,显示在页面上   <section class="col-xs-10 col-sm-11 col-md-11" ng-repeat="x in items"> <h3>Item {{$index+1}}</h3> <p>{{x}}</p> </section>

  1. 需要将所有段落作为一个<textarea>进行编辑。
  2. 是否可能 - 或者可能更好地将这些物品放在一起然后分开?

1 个答案:

答案 0 :(得分:0)

解决方法是将每个段落添加为textarea并隐藏为空。