gpt4 book ai didi

javascript - 将值从 javascript 传递到 php

转载 作者:行者123 更新时间:2023-11-30 12:55:02 27 4
gpt4 key购买 nike

HTML代码

<form action="phpfile.php" method="post">
<input type="button" id="id1">
<input type="button" id="id2">
<input type="submit">
</form>

<div id="result"></div>

JavaScript 代码

qty1=0;
qty2=0;
totalqty=0;


$("#id1").click(function(){

qty1=qty1+1;
totalqty=totalqty+1;
$("#result").html(qty1);
});

$("#id2").click(function(){
qty2=qty2+1;
totalqty=totalqty+1;
$("#result").html(qty2);
});

关于如何在我单击提交按钮后将 qty1、qty2 和 totalqty 发送到我的 php 文件,你能给我一些提示吗?在将其发送到 php 文件之前,我需要先检查按钮是否已被单击。如果不是,则不会向 phpfile 发送任何数量。我需要根据您点击按钮的次数发送准确的数量。

最佳答案

最简单的解决方案是添加 qty作为<input type="hidden" id="qty1" name="qty1" />到你的表格。它们将作为您的变量不可见,并将作为表单字段发送到服务器。要从 Javascript 访问它们的值,请使用 $("#qty1").value()

关于javascript - 将值从 javascript 传递到 php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19506864/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com