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

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

按下按鈕時(shí)加一(在 Ajax 調(diào)用中)

按下按鈕時(shí)加一(在 Ajax 調(diào)用中)

PHP
qq_遁去的一_1 2022-10-14 14:25:19
我有一些標(biāo)記<span class="points-count">0</span>。按下按鈕時(shí),我想在 php.ini 中將此值增加一。我如何實(shí)現(xiàn)這一目標(biāo)?
查看完整描述

3 回答

?
PIPIONE

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

如果您真的想使用 ajax 調(diào)用來計(jì)算數(shù)字,這里是示例:


計(jì)數(shù)器.php:


<?php

    $counter = $_GET['current_value'] + 1;       //value is increase here

    echo json_encode(['new_value' => $counter]); //return the value in JSON format

?>

您的 HTML 文件:


<span class="points-count">0</span>

<button onclick="count()">Increase</button>


<script type="text/javascript">

    function count() {

        $.ajax({

            url     : "counter.php",

            type    : "GET",

            dataType: "json",

            data    : {

                current_value: $(".points-count").html() //set value here

            },

            success: function(data) {

                $(".points-count").html(data.new_value); //finally, get the returned value of the php script

            }

        });

    }

</script>


查看完整回答
反對(duì) 回復(fù) 2022-10-14
?
弒天下

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

您可以使用jQuery、javascript等來完成此操作,如果您只想使用PHP,請(qǐng)檢查此代碼


    <?php  


$current_value = 0;

if($_POST['count']){

    $current_value = $_POST['count'];

    $current_value++;} 

?>

<form action="" method="POST">

    <span class="points-count"><?=$current_value?></span>

    <input type="hidden" name="count" value="<?=$current_value?>">

    <button type="submit">Add</button>

</form>


查看完整回答
反對(duì) 回復(fù) 2022-10-14
?
天涯盡頭無女友

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

而不是使用 php。您可以為此使用 jquery 或 javascript。php 僅用于服務(wù)器端渲染。



查看完整回答
反對(duì) 回復(fù) 2022-10-14
  • 3 回答
  • 0 關(guān)注
  • 135 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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