我有一个Javascript变量,它具有一些可更改的值。现在我想在另一个文件中使用此变量进行一些计算。

例如我在index.php中有我的变量,如下所示:

    $(function() {
       $("#sel").on("change", function() {
       var vall = $(this).find('option:selected').attr('value')
       alert(vall);
    });
   });


在另一个文件calculate.php中,我有这样的代码,并想将“ vall”变量与“ $ total variable”相乘

public function getGrandTotal(){
    $quote = Mage::getModel('checkout/session')->getQuote();
    $total = $quote->getGrandTotal();
    $gt =  $total *  var vall ; // "vall" variable to multiply with total

    return Mage::helper('checkout')->formatPrice($gt);
}

最佳答案

应该使用Ajax来完成,例如:

$("#sel").on("change", function() {
   var vall = $(this).val();
   $.ajax({
       type:'post',
       url : "url to call",
       data:{val : vall}, // send vall here get as val in the backend.
       dataType:'text', // other values are json, script, html etc.
       success:function(data){
          console.log(data);  // <----get the response from the backend if echoed.
       }
   });
});

08-19 16:52