作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我有一个表格,其中包含帖子列表和每个帖子中的两个按钮(删除和编辑)。所有字段都得到了编辑,但我无法编辑 nicEdit textarea,但是当我尝试编辑第一篇文章的 textarea 时,它得到了编辑这是我的 jquery 代码:
<script type="text/javascript">
$(function() {
$("#myForm").submit(function() {
$("textarea").each(function(){
new nicEditors.findEditor(this.id).saveContent();
});
});
});
</script>
这是我的观点:
@foreach($articles as $post)
<tr>
<td>{{$post->title}}</td>
<td>{{$post->published_at}}</td>
<td><p data-placement="top" data-toggle="tooltip" title="Edit"><button class="btn btn-primary btn-xs" data-title="Edit" data-toggle="modal" data-target="#edit{{$post->id}}" ><span class="fa fa-pencil"></span></button></p></a></td></a>
<td><p data-placement="top" data-toggle="tooltip" title="Delete"><button class="btn btn-danger btn-xs" data-title="Delete" data-toggle="modal" data-target="#delete{{$post->id}}" ><span class="fa fa-trash"></span></button></p></td>
<div class="modal fade" id="edit{{$post->id}}" tabindex="-1" role="dialog" aria-labelledby="edit" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button>
<h4 class="modal-title custom_align" id="Heading">Edit l'article : {{$post->id}}</h4>
</div>
<div class="modal-body">
{!! Form::model($post,['method' => 'PATCH','files'=> true,'id'=>'myForm','route' => ['articles.update', $post->id]])!!}
@include('partials.postForm')
</div>
</tr>
@endforeach
最佳答案
试试这个
$("#myForm").submit(function() {
$("textarea").each(function(){
$(this).val($(this).closest('tr').find('.nicEdit-main').html());
});
});
关于javascript - 如何更新nicEdit textarea的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34250710/
我是一名优秀的程序员,十分优秀!