这是我的JavaScript代码.........
<script type="text/javascript">
function openmodel(sectorid){
$('#hdnSector').val(sectorid);
var Id = sectorid;
$('#myModal').modal('show');
}
</script>
这是我的PHP代码...
<?php
global $wpdb;
$variable=Id;
$table_name = "wp_artical_area";
$sub = $wpdb->get_results("SELECT * from $table_name where
CAA_PARENT_ID=$variable");
?>
我想要javasccript代码中的$ variable值,该值在javascript变量ID中已经值。任何人都可以告诉我如何使用php $ variable中ID为javascript变量的值。