Jeditable 在触发/提交后显示整个 HTML 文档作为可编辑字段的替换

发布于 2025-01-07 21:14:29 字数 174 浏览 0 评论 0原文

我正在使用 jeditable 并且它的工作非常奇怪。

编辑可编辑字段并提交后,它不会打印新内容,而是在文本框中显示整个文档窗口(可编辑内容的占位符)。

问题:来自作者使用 save.php 的示例。 save.php 的内容是什么? 是否有必要将结果发送到 php 文件? HTML 文件不能工作吗?

I am using jeditable and had it working very weird.

after editing the editable field and submits it instead of printing the new content it displays the entire document window in the textbox(placeholder of editable content).

question: from the example where the author used save.php. what was the content of save.php?
is it necessary to send the result on a php file?? can't an HTML file work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

电影里的梦 2025-01-14 21:14:29

我相信在作者主页底部的评论框中 - 有人好心地提供了 save.php 文件的版本供人们根据需要使用和修改。

save.php 文件用于实际保存可编辑字段的值。如果没有它,数据不会发生任何变化,并且如果刷新页面,它会重置为默认文本。

选项而不是 php 文件可以是:

  • 将文本/选择更改保存到 Cookie
  • 使用其他服务器端方法(例如 asp、jsp、rails 或 .NET)来处理更改的保存。

html 页面是静态页面,没有与网站服务器通信的处理设施,因此 html 不适合这种需求。

I believe within the comments box at the bottom of the author's main page - somebody has kindly provided a version of the save.php file for people to use and modify as needed.

The save.php file is used to actually save the values of the editable field/s. Without it, nothing would happen to the data and it would reset to the default text if the page is refreshed.

Options instead of a php file could be:

  • Saving the text/select changes to a Cookie
  • Using another server side methos such as asp, jsp, rails or .NET to process the saving of the changes.

an html page is a static page with no processing facility per say to communicate with the website server, so no.. html is not suitable for such a need.

旧瑾黎汐 2025-01-14 21:14:29

保存脚本必须返回编辑后想要在页面上显示的字符串。您现在正在返回完整的 html 页面。

所有演示文件的来源都可以从 GitHub 找到。

Saving script must return the string you want to display on page after editing. You are now returning full html page.

Source of for all demofiles can be found from GitHub.

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