gpt4 book ai didi

php - 在脚本中使用 php

转载 作者:行者123 更新时间:2023-11-28 15:59:26 24 4
gpt4 key购买 nike

我正在编写一个程序,需要在脚本中添加 php 代码

html 有一个表格,其中有 2 个选择框,我想在用户更改第一个选择框时更新第二个选择框

$('.chzn-select').chosen().change(function() {
var a = $(this).attr('data-id');
var ord = $(this).val();

if (a == 'ord') //Check if first select box is changed
{
var itemcode = $(this).parent().parent().find('[data-id="item"]'); //find second select from same row

//add items from order
<?php
$ord = '<script>document.write(ord);</script>'; //javascript variable to php variable

//This code is not working, if I update the php variable from javascript variable
mysql_query('select * from ords where ord_id = '.$ord.');
?>
$(itemcode).append('<option>a</option>');


$(".chzn-select").trigger("liszt:updated");
}

});

有什么想法吗?

最佳答案

您可以尝试使用 jQuery 加载函数发送变量。

page1.html:

<script type="text/javascript">
$('.chzn-select').chosen().change(function() {
var a = $(this).attr('data-id');
var ord = $(this).val();
if (a == 'ord') {
var itemcode = $(this).parent().parent().find('[data-id="item"]');
$('#ord').load('page2.php?ord='+ord);
$(itemcode).append('<option>'+$('#ord').html()+'</option>');
$(".chzn-select").trigger("liszt:updated");
}

});
</script>

<div id="ord"></div>

page2.php:

<?php
$ord = $_GET['ord'];
mysql_query('select * from ords where ord_id = '.$ord);
?>

关于php - 在脚本中使用 php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17501125/

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