PHPサイトをdivにリロードする次のjavascriptがあります。
if (boxes.length) {
$(".loadingItems").fadeIn(300);
// Change the name here as well
$(".indexMain").load('indexMain.php?'+this.name+'=' + boxes.join("+"),
function() {
$(".indexMain").fadeIn('slow');
$(".loadingItems").fadeOut(300);
});
同じ URL に別のパラメータを渡したい...
だから私はそれを働かせることはできませんが、次のようにすればいいと思いました。これは正しい方法ですか?
categ
次のようなphp変数を使用してパラメーターを渡そうとしています$category
:
if (boxes.length) {
$(".loadingItems").fadeIn(300);
// Change the name here as well
$(".indexMain").load('indexMain.php?categ=<?php echo $category;?>&'+this.name+'=' + boxes.join("+"),
function() {
$(".indexMain").fadeIn('slow');
$(".loadingItems").fadeOut(300);
});