组件.php
<script>
jq142(document).ready( function() {
new Paginator('<?php echo HOST_URL; ?>component_ajax.php');
});
</script>
我需要将 id 从 component.php 文件传递给 component_ajax.php 文件。component_ajax.php 将加载到 component.php 文件中。
组件_ajax.php
$coid = $_GET['id'];
$products = $productObj->getFrontProductsbyComponents( $coid );
向我解释一下如何将 id 传递给$coid
?