jquery 就地编辑
大家好,我是 jquery 新手,我正在尝试就地编辑(简单),
但我不知道如何检查用户是否单击编辑提交底部:b。
你知道如何制作编辑系统的简单教程吗:)?
我现在有了这个
$(function() {
$('#forum_dato a').click(function()
{
//var data = $('#data').text();
$('#data').html('<form action="..." method="post"><textarea name="data">' +
$('#data').text() +
'</textarea><input type="submit" value="Edit"></form>');
return false;
})
})
,我需要使用一些ajax还是最好的:)?
Hello all im new to jquery and im trying to make a edit inplace (simple)
but i dont know how to check if the users click on the edit submit bottom :b.
do you know a simple tutorial how to make a edit system :)?.
i have this now
$(function() {
$('#forum_dato a').click(function()
{
//var data = $('#data').text();
$('#data').html('<form action="..." method="post"><textarea name="data">' +
$('#data').text() +
'</textarea><input type="submit" value="Edit"></form>');
return false;
})
})
do i need to use some ajax or what is best :)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为什么不使用别人已经编写的代码呢?有大量的图书馆已经为您做到了这一点。两个非常好的:
节省自己的时间,去编写有意义的(阅读:增值)代码。
Why not use the code someone else has already written? There are tons of libraries that already do this for you. Two really good ones:
Save yourself the time and go write meaningful (read: value-added) code.
这个问题已经被问过,并且在我看来有不错的答案,https ://stackoverflow.com/questions/708801/whats-the-best-edit-in-place-plugin-for-jquery
如果它不符合您的需要或有任何其他问题,请随时询问。 :)
This question already has been asked, and have decent answers IMO, https://stackoverflow.com/questions/708801/whats-the-best-edit-in-place-plugin-for-jquery
If it doesn't fit you need or have any other question, feel free to ask. :)
在这里你可以找到一个不错的插件,也许你可以找到一些有用的提示
demosite
doku
here you can find a nice plugin, maybe you can find some useful hints
demosite
doku