所以我在加載頁面之前提交我的AJAX,並在ajax之後像這樣在同一頁面上調用它。在頁面加載時提交阿賈克斯
<input type="text" class="hidden" id="storeID" value="<?php echo $_GET['store']; ?>">
$(document).ready(function()
{
var store = $("#storeID").val();
$.ajax(
{
url: '../user-style.php',
method: 'POST',
data: {"store":store}
});
});
<link rel="stylesheet" href="../user-style.php" media="screen" />
用戶style.php
if(isset($_POST['store']))
{
$stmtgetstyle = $mysqli->prepare("SELECT * FROM store_style_configuration WHERE store_id=?");
$stmtgetstyle->bind_param("i", $_GET['store']);
$stmtgetstyle->execute();
$getstyle = $stmtgetstyle->get_result();
$style = $getstyle->fetch_assoc();
$stmtgetstyle->close();
}
但用戶style.php沒有得到任何數據沒有任何東西是從數據庫中來了。
謝謝兄弟!我的CSS現在正在工作:) – Stan