jquery 就地编辑

发布于 2024-10-17 11:35:25 字数 533 浏览 2 评论 0原文

大家好,我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

可是我不能没有你 2024-10-24 11:35:25

为什么不使用别人已经编写的代码呢?有大量的图书馆已经为您做到了这一点。两个非常好的:

节省自己的时间,去编写有意义的(阅读:增值)代码。

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.

说不完的你爱 2024-10-24 11:35:25

这个问题已经被问过,并且在我看来有不错的答案,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. :)

朦胧时间 2024-10-24 11:35:25

在这里你可以找到一个不错的插件,也许你可以找到一些有用的提示

demosite
doku

here you can find a nice plugin, maybe you can find some useful hints

demosite
doku

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文