I am trying to use jquery to grab the contents of a div and pass it to a php script that emails it. So I need to use a $('#div').html() and send that 开发者_如何转开发to a $_POST[''] value. Any ideas?
(From jQuery's docs):
$.ajax({
   type: "POST",
   //your PHP file
   url: "some.php",
   //passing contents $_POST['body'] will be your body.
   data: "body=" + $('#div').html(),
   //msg is your PHP scripts' response
   success: function(msg){
     alert( "Data Saved: " + msg );
   }
 });
Or you may also want to try this:
$.post('ajax/sendEmail.php',
    { body : $('#div').html() }, 
    function(msg) { 
        alert("Email was sent: " + msg);
    });
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论