第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Sweetalert2 textarea 輸入顯示在電子郵件上

Sweetalert2 textarea 輸入顯示在電子郵件上

PHP
翻翻過去那場雪 2023-03-04 10:08:28
我如何設(shè)法接收文本區(qū)域內(nèi)用戶的輸入?以下是我更詳細(xì)的意思:https://i.stack.imgur.com/trG1E.gif 我的 JS 看起來像這樣:$('#sad').on('click', function() {    const sad    = $('#sad').val();     const { value: text } = Swal.fire({        title:'<strong>Lass uns mehr erfahren</strong>',        input: 'textarea'    }).then(function() {    $.ajax({        type: "POST",        url: "feedback.php",//===PHP file name and directory====        data:{sad: sad},    success:function(data){        console.log(data);        //Success Message == 'Title', 'Message body', Last one leave as it is        Swal.fire({        icon: 'success',        title: "Danke!",        showConfirmButton: false,        timer: 3000    });    },    error:function(data){        //Error Message == 'Title', 'Message body', Last one leave as it is        Swal.fire({            icon: 'error',            title: 'Oops...',            text: 'Something went wrong!'})}});if (text) {    $.ajax({         type: "POST",          url: "feedback.php",          data: {'text': text}        })}})})和我的 PHP:$sad = $_POST['sad'];$text = $_POST['text'];    elseif(isset( $_POST['sad'] )) {                     $EmailFrom = "xxxxxxxx@gmail.com";                    $Subject = "New Feedback";                    $mailTo = "info@xxxxxxxx.me";                    $txt = "Oh no, you got a new 'Sad' review".$text;                    $headers = 'From: ' .$EmailFrom. "\r\n";                    mail($mailTo, $Subject, $txt, $headers);                    header("Location: https://xxxxxxxx.me/?mailsend");                    }我收到了 $txt 部分,但沒有收到每封電子郵件的用戶輸入:“哦,不,你收到了一條新的‘悲傷’評論”
查看完整描述

1 回答

?
墨色風(fēng)雨

TA貢獻(xiàn)1853條經(jīng)驗(yàn) 獲得超6個贊

在下面的代碼中,我已經(jīng)在內(nèi)部傳遞了 textarea 的值function(result),然后我習(xí)慣了result.value訪問 textarea 的值并將其傳遞給 ajax 調(diào)用。

演示代碼

$('#sad').on('click', function() {

  const sad = $('#sad').val();

  const {

    value: text

  } = Swal.fire({

    title: '<strong>Lass uns mehr erfahren</strong>',

    input: 'textarea'

  }).then(function(result) {

  //chcking if user have type something in textbox

    if (result.value) {

    //printing in console

      console.log(result.value)

      $.ajax({

        type: "POST",

        url: "feedback.php", //===PHP file name and directory====

        data: {

          sad: sad,

          values: result.value //<-sending textarea value

        },

        success: function(data) {

          console.log(data);

          //Success Message == 'Title', 'Message body', Last one leave as it is

          Swal.fire({

            icon: 'success',

            title: "Danke!",

            showConfirmButton: false,

            timer: 3000



          });

        },

        error: function(data) {

          //Error Message == 'Title', 'Message body', Last one leave as it is

          Swal.fire({

            icon: 'error',

            title: 'Oops...',

            text: 'Something went wrong!'

          })

        }

      });


    }

    if (text) {

      $.ajax({

        type: "POST",

        url: "feedback.php",

        data: {

          'text': text

        }

      })

    }

  })

})

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>


<button id="sad">Click</button>

然后,您需要使用 php 獲取在 ajax 中傳遞的值$_POST['values']



查看完整回答
反對 回復(fù) 2023-03-04
  • 1 回答
  • 0 關(guān)注
  • 168 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號