我的脚本中有一个 jQuery 插件,它显示和隐藏 html 中的任何元素,从这里下载
所以在我的脚本中,它显示和隐藏了一个 div,如下所示:
<div class="show" rel="#hild<?php echo $r[id]; ?>">
<button class="action">
Respond with a new comment
</button>
</div>
单击此按钮后,将显示以下 div:
<div id="hild<?php echo $r[id]; ?>" style="display:none;">
<form method="post" name="form">
<textarea rows="5" cols="35" name="texttcons" id="texttcons"></textarea>
</form>
</div>
所以,我的问题是当我单击该按钮以显示另一个 div 时,动画完成后需要对文本区域进行聚焦。
请告诉我解决方案。