duanlv2788 2014-01-11 14:35
浏览 56
已采纳

如何在不使用表单元素的情况下将div内容添加到mysql

I want to save div content into mysql without using form and button means page should be opened in browser and it should send it's all div content to mysql table automatically.

here it is what i tried

var myVar = setInterval(function(){getElement()},5000);
function getElement()
{
  var iBody = $("#frametest").contents().find(".bx-viewport").html();
  document.getElementById("demo").innerHtml=iBody;
  alert(iBody);
}

i want this demo div to be saved in mysql

  • 写回答

1条回答 默认 最新

  • douzha8489 2014-01-11 16:51
    关注

    If you don't want to use forms, I think AJAX is a great option.

    var contents = $('#frametest').contents().find('.bx-viewport').html();
    $.ajax({
      url: 'path/to/php/script',
      type: 'POST',
      data: {content: contents},
      success: function() {
        // do something after sending data
      }
    });
    

    This will send contents to the php script defined in the url property of the AJAX call as a POST request, and in the php script you can use the normal thing you'd do for saving it in MySQL.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 mybatis自定义sql VO赋值不上去
  • ¥15 MC9S12XS128单片机开发板实验
  • ¥15 WSL上下载的joern在windows怎么用?
  • ¥15 jetson nano4GB
  • ¥15 电脑回复出厂设置,重装过程报错提示,求解决方案Windows 无法分析或处理无人参与应答文件 [C:\WINDOWS\Panther\unattend.xml,如何解决?
  • ¥15 进入lighttools中的UDOP编辑器的方法
  • ¥15 求Gen6d训练数据集
  • ¥20 liunx中winscp中可以登入ftp,但是不能登入sftp,如何解决
  • ¥15 lighttools的光学属性自定义的用法流程
  • ¥15 uni-app动态修改推荐页标题时报错
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部