I have a C()
function within a function B()
within has another function A()
; この関数A()
は、ドロップダウンが変更されるたびに実行されます。B()
関数は 2 次元の配列を生成し、関数は 2 次元のC ()
配列を取り、1 次元の別の配列v []
を生成します。問題は、配列を渡し、同じレベルで宣言されたC()
名前の関数でグローバルに使用する方法です。calculate()
のA()
?
グローバル変数が悪いと聞きましたが、どの代替ソリューションを使用すればよいですか?
A(){
B(){
C(){
var v = new Array();
.....
.....
v[i] = disciplines[i].nom;
}
}
}
Calculate(array,id){
var result = v[i];
}
私はcodeigniterを使用しています.script2には、支払われる金額を計算し、id = salle_montant_payeを持つ入力に挿入する関数があります.ここでは、qp(the pourcentage % example=0.5)とtarifの2つの変数がありません(月額)。したがって、スクリプト 1 からスクリプト 2 に渡す必要があります。
スクリプトでは、サル (ジム) の選択ごとに 1 つの分野 (スポーツ) があり、分野ごとに qp (pourcentage) と tarif (金額) があります。したがって、配列 qp[] と tarif[] は、ループによって生成されます。 id ごとに qp と tarif の値が含まれています。たとえば、Zimgym という名前のジムでフットボール (配列の分野からインデックス 2 を持つもの) を選択した場合、月額 120 を支払う必要があり、社会は半分 (0.5) を支払います。これらの値は for ループの結果の qp[i] と tarif[] に格納されるため、関数 $('#disciplines').change(function () { var a = $(this) に渡す必要があります。 .find('option:selected').attr('value'); これは、qp と tarif の値を取得するために使用される規律 a = 2 のインデックスを持ち、それらをスクリプト 2 に渡して金額を計算します支払われます。
私のコード:
スクリプト 1
function qp(qp, id) {
var qpresult = qp[id];
}
function tarif(tarif, id) {
var tarifresult = tarif[id];
}
$(document).ready(function () {
$('#salle').change(function () {
//any select change on the dropdown with id salle trigger this code
$("#disciplines > option").remove(); //first of all clear select items
var salle_nom = $('#salle').val(); //here i'm taking salle id of the selected one.
$.ajax({
type: "POST",
url: "http://localhost/public_html/admin/dropdown_salle/get_cities/" + salle_nom,
//here i'm calling our user controller and get_disciplines method with the salle_id
dataType: "json",
success: function (disciplines) //we're calling the response json array 'disciplines'
{
var discipline = new Array();
var qp = new Array();
var tarif = new Array();
for (i = 0; i < disciplines.length; ++i) {
// Now i got 3 arrays from the two dimentional
//array from the db. one for 'disciplines',
// one for 'qp_agent' = (pourcentage a payé pour l'agent),
//and the last for 'tarif'(tarif par mois de la cette discipline dans la salle choisi).
discipline[i] = disciplines[i].discipline + ' pour ' + disciplines[i].categorie_tarif;
qp[i] = disciplines[i].qp_agent;
tarif[i] = disciplines[i].tarif;
}
$.each(discipline, function (id, value)
//here i'm doing a foeach loop round each value
//with id as the key and value as the value
{
var opt = $('<option />');
// here i'm creating a new select option with for each value
opt.val(id);
opt.text(value);
$('#disciplines').append(opt);
//here i will append these new select options to a dropdown with the id 'disciplines'
});
}
});
});
var qp = new Array();
// here on change disciplines i got the disciplines id, i will
//use it to have 'qp' value and the 'tarif' value from qp[]
//and tarif[] that correspond on discipline selected
$('#disciplines').change(function () {
var a = $(this).find('option:selected').attr('value');
//here i retrieve the qp and tarif value corresponds to my 'discipline' choosen.
var qp = qp(qp, a);
var tarif = tarif(tarif, a);
});
});
// in the end i must pass thes 2 variables qp and tarif to
//the seconde script in te same page that calculate the amount to be paid
スクリプト 2
function insertText(elemID) {
var datestart = document.getElementById('date3');
var dateend = document.getElementById('date4');
var start = datestart.value;
var end = dateend.value;
var date1 = new Date(start);
var date2 = new Date(end);
var timeDiff = Math.abs(date2.getTime() - date1.getTime());
var diffDays = Math.ceil(timeDiff / (1000 * 3600 * 24));
var diffMonths = Math.round(diffDays / 30);
var qp_variable = qp; // ici je doit affecter la valeur de qp passé a qp_variable
var tarif_variable = tarif; // ici je doit affecter la valeur de qp passé a qp_variable
var finalresult = diffMonths * qp_variable * tarif_variable;
document.getElementById("salle_montant_paye").value = finalresult;
//Now i get the js variable inside my input element.
}