gpt4 book ai didi

javascript - 将 javascript 变量传递给同一 php 文件中的 php 变量

转载 作者:行者123 更新时间:2023-11-28 12:21:33 25 4
gpt4 key购买 nike

我有一个 php 文件,其中有一个数字输入字段。我可以使用 jQuery 获取输入字段的值并将其存储在 javascript 变量中,但现在我想将此 javascript 变量传递给 php 变量。我能轻松实现这一目标吗?

<input id="custom_price" type="number" class="custom_price" name="custom_price" value="10" min="10" max="1000">  

<script type="text/javascript">
jQuery("#custom_price").live("change", function () {
var user_amount = jQuery('#custom_price').val();
});
</script>
<?php $final_value = *How can I pass user_amount here* ?>

最佳答案

你不能。您需要使用 GETPOST 方法将该变量发送到服务器以保存在 PHP 变量中。

关于javascript - 将 javascript 变量传递给同一 php 文件中的 php 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36916280/

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