我有以下 javascript,它将一个 php 站点重新加载到一个 div 中:
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);
});
我想在同一个网址中传递另一个参数...
所以我认为我应该按照以下方式进行操作,尽管我无法让它工作。这是正确的方法吗?
我正在尝试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);
});