jquery编辑评论
你能解释一下制作 jquery 编辑系统的方法吗,我点击一下,然后它显示一个文本区域和一个编辑底部。
最好的方法是什么?
现在我有这个:
<div id="frame">
<div id="data">bla bla bla</div>
<a class='edit' href=''>edit</a>
</div>
<script>
$(function() {
$('#frame a').click(function()
{
var data = $('#data').text();
alert(data);
console.log('press edit');
})
})
</script>
Can you explain the methods to make a jquery edit system where I click on a click and then it show a textarea and a edit bottom.
What is the best methods to do it?
Right now I have this:
<div id="frame">
<div id="data">bla bla bla</div>
<a class='edit' href=''>edit</a>
</div>
<script>
$(function() {
$('#frame a').click(function()
{
var data = $('#data').text();
alert(data);
console.log('press edit');
})
})
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为大多数网站(包括 StackOverflow)执行此操作的方式是使用浏览器内置的“设计模式”功能。
这里是此类编辑器的开源版本。
我修改了您的示例,这样单击编辑链接将使“bla bla bla”文本可编辑。
注意两件事:
真的。
I think the way most sites do this, including StackOverflow, is by using the built in "design mode" capabilities of browsers.
Here is an Open Source version of such an editor.
I modified your example, such that clicking on the edit link will make the "bla bla bla" text editable.
Notice two things:
true.
我想,你已经快到了。如果要编辑的数据非常简单,您可以这样做:
如果要编辑的数据更复杂,您可能会考虑通过 AJAX 加载它们,或者将整个表单放在 html 中编辑并默认隐藏它。如果用户单击编辑按钮,您只需显示它即可。
I think, you're almost there. If data to edit are very simple, you could just do something like:
If the data to edit are more complex, you might consider to load them via AJAX or put the whole form to edit inside the html and hide it by default. If the user clicks the edit button, you just need to show it.