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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

將變量傳遞給 php

將變量傳遞給 php

PHP
肥皂起泡泡 2023-04-15 20:27:50
我需要將變量“x”傳遞給 php,但我不知道如何傳遞。(我是 html 的新手。如果您需要更多信息,請(qǐng)告訴我。THX :D )function functionT() {  swal({      title: "For help",      text: "Write your phone number here and we will call you:",      type: "input",      showCancelButton: true,      closeOnConfirm: false,      animation: "slide-from-top",      inputPlaceholder: "ex: 0711342647"    },    function(inputValue) {      if (inputValue === false) return false;      if (inputValue === "") {        swal.showInputError("Try again");        return false      }      x = inputValue;      swal("", "You were added on our list: " + x, "success");    });}
查看完整描述

2 回答

?
不負(fù)相思意

TA貢獻(xiàn)1777條經(jīng)驗(yàn) 獲得超10個(gè)贊

我找到了一種工作方式。


function functionT() {

  swal({

  title: "For help",

  text: "Write your phone number here and we will call you:",

  type: "input",

  showCancelButton: true,

  closeOnConfirm: false,

  animation: "slide-from-top",

  inputPlaceholder: "ex: 0711342647"

},

function(inputValue){

  if (inputValue === false) return false;


  if (inputValue === "") {

    swal.showInputError("Try again");

    return false

  }

  x = inputValue;




  swal("", "You were added on our list: " + x, "success");

  phone(x);

});

}

function phone(x){


var xmlhttp = new XMLHttpRequest();

  var xmlhttp = new XMLHttpRequest();

        xmlhttp.onreadystatechange = function() {

            if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {

                res = xmlhttp.responseText;


            }

        };

  xmlhttp.open("GET", "php.php?x="+x, true);

  xmlhttp.send();

和PHP:


<?php

$myfile = fopen("newfile.txt", "a+") or die("Unable to open file!");

$phone_nr = $_GET['x'];

fwrite($myfile, $phone_nr);

fclose($myfile);

?> 

php 將在“newfile.txt”中寫(xiě)入電話(huà)號(hào)碼。


查看完整回答
反對(duì) 回復(fù) 2023-04-15
?
哈士奇WWW

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

Javascript/Jquery 服務(wù)于客戶(hù)端,而 PHP 服務(wù)于服務(wù)器端,這意味著在發(fā)布表單/頁(yè)面之前,您不能將 x 值添加到 php 變量。簡(jiǎn)單的解決方法是在表單元素中創(chuàng)建一個(gè)帶有 id myxinputbox 的隱藏輸入元素,在其中添加 x 值 -

document.getElementById('myxinputbox').value = x;

然后,當(dāng)您發(fā)布表單時(shí),將 x 添加到 php -

$posted_x = $_POST['myxinputbox'];


查看完整回答
反對(duì) 回復(fù) 2023-04-15
  • 2 回答
  • 0 關(guān)注
  • 139 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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