gpt4 book ai didi

jquery - 如何在mysql查询中传递jquery变量

转载 作者:行者123 更新时间:2023-11-29 21:20:02 25 4
gpt4 key购买 nike

我想获取来自 jquery 的子目标 id,我希望它出现在这个 mysql 查询中

 <a href="#small_add" data-id="<?php echo $id;?>" type="button" data-toggle="modal" class="open-AddBookDialog">Details</a></div>
<script>
$(document).on("click", ".open-AddBookDialog", function () {
var myBookId = $(this).data('id');
$(".modal-body #bookId").val( myBookId );
$('#small_add').modal('show');
});
</script>

$sub_desti_id=???

$small_hotel="SELECT * FROM small_add WHERE sub_dest='$sub_desti_id' ";
$small_hotel1=mysql_query($small_hotel);

最佳答案

PHP 在服务器上运行,JavaScript (jQuery) 在浏览器上运行。你可以用PHP写JS,但是不能用JS在PHP中做修改。

例如,要执行您想要的操作,您必须使用 ajax。为此,您必须使用参数在同一页面上发布帖子才能执行您想要的操作。例如:

function ajaxCall() {
var _sub_desti_id = /* set you variable*/
$.ajax({
url: 'index.php',
data: {function:query, sub_desti_id:_sub_desti_id},
success: function(data) {
//do what you want with the result of the query
}
})
}

在你的 php 中你使用类似的东西

if ($_REQUEST['function'] == 'query') {
$sub_desti_id = $_POST['sub_desti_id'];

$small_hotel="SELECT * FROM small_add WHERE sub_dest='$sub_desti_id' ";
$small_hotel1=mysql_query($small_hotel);

$id = //get your id from the query;

echo '<a href="#small_add" data-id="'.$id.'" type="button" data-toggle="modal" class="open-AddBookDialog">Details</a>';
}

我现在没有环境来测试它的编写,但我认为你可以得到这个想法。

关于jquery - 如何在mysql查询中传递jquery变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35763430/

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