Доброго времени суток! Уважаемые, подскажите пожалуйста, каким образом передать данные в .php из .js в данном примере? В папке ./components/calc/js/wincalc.js ~ на 374 строке.
Здесь полурабочий архив
calculator.zip
send: function(){
var options=this.options;
var cons=this.consType[options.constructType];
var s='$.extend(options,{"numRow":"'+cons.numRow+'","numCol":"'+cons.numCol+'"';
for(var i=0;i<cons.numCol;i++)
s+=',"width'+i+'":'+cons.width[i];
for(var i=0;i<cons.numRow;i++)
s+=',"height'+i+'":'+cons.height[i];
s+='});';
eval(s);
$('.costname').html('Стоимость: <img align="right" width="21px" height="21px" src="./images/calc/loading.gif" />');
$('span.cost').html('');
$.post('./components/calc/calc.php',
options,
function(data){
$('span.cost').html(data);
$('.costname').html('Стоимость:');
//alert(data);
},false
);
}
});