gpt4 book ai didi

javascript - 从 foreach 循环内部的 textarea 获取值

转载 作者:行者123 更新时间:2023-12-01 03:30:10 25 4
gpt4 key购买 nike

所以,事情是这样的 - 我有一个使用 foreach 循环生成的评论部分,所有评论都有按钮单击,这将导致引导模式使用文本区域打开以输入回复评论。 问题是我只能从页面上的第一条评论中获取值,我尝试使用 JS 获取值,就像这样 - var comment = $('#textarea_id').val(); 和仅使用 PHP ($_POST) 但它仅适用于第一个评论。它还尝试为每个文本区域添加唯一的 ID、唯一的名称等,但这也没有帮助。这里有一些代码供您视觉理解(请注意,我使用的是 smarty 引擎,但我认为它与常规 PHP foreach 循环中的逻辑相同,所以不要介意):

{foreach from=$comments item=row}
Here is the body of comment and button to trigger reply modal
And this is reply modal with textarea in it:
<!-- Reply Modal -->
<div class="modal fade" id="{$row.id}" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content" style="word-wrap:break-word;">
<div class="modal-header love-modal">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h3 class="modal-title" id="myModalLabel">Reply to <a href="{$abslink}profile/{$row.username}">{$row.username}</a></h3>
</div>
<div class="modal-body">
<form class="form-horizontal" role="form" action="#" method="post">
<textarea class="form-control" id="someidfortextarea" name="" rows="8" maxlength="5550"></textarea>
</form>
</div>
<div class="modal-footer">
<button class="reply btn btn-success" name="submit" type="submit">Post</button>
<button type="button" class="btn btn-success" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
{/foreach}

所以,主要问题是 - 如何从 foreach 循环中的文本区域获取文本(通过 php 或 javascript)?我将非常高兴看到任何建议或意见!非常感谢!

最佳答案

您需要一个共享标识符来将按钮与匹配的文本区域相关联。 $row.id 看起来很匹配。

免责声明:未经测试的代码,因此您可能需要稍微花点功夫才能使其正常工作。

{foreach from=$comments item=row}
...
<textarea class="form-control" id="textarea_{$row.id}" name="" rows="8" maxlength="5550"></textarea>
...
<button id="submit_post_{$row.id}" class="reply btn btn-success" name="submit" type="submit">Post</button>
...
{/foreach}

然后在您的 JavaScript 中,您可以将其关联起来:

$('button.reply').click(function() {
var button_id = $(this).prop('id');
var row_id = button_id.replace('submit_post_', '');
var textarea_id = '#textarea_' + row_id;

var comment = $(textarea_id).val();

// now send {comment} to the server using ajax
});

我确信有更有效的方法可以做到这一点,也许您可​​以在按钮上使用 data 属性,这样您就不必对按钮的 进行字符串替换位id。这只是一个总体想法。

关于javascript - 从 foreach 循环内部的 textarea 获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44576850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com