Jeditable 在触发/提交后显示整个 HTML 文档作为可编辑字段的替换
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信在作者主页底部的评论框中 - 有人好心地提供了 save.php 文件的版本供人们根据需要使用和修改。
save.php 文件用于实际保存可编辑字段的值。如果没有它,数据不会发生任何变化,并且如果刷新页面,它会重置为默认文本。
选项而不是 php 文件可以是:
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:
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.
保存脚本必须返回编辑后想要在页面上显示的字符串。您现在正在返回完整的 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.