- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在函数 B()
中有一个 C()
函数,其中还有另一个函数 A()
;函数 A()
在下拉列表的每次更改时运行。 B()
函数生成一个二维数组,C()
函数获取二维数组并生成另一个一维数组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(pourcentage % example=0.5 )和关税(每月金额)。所以我需要将它们从脚本一传递到脚本二。
在每个选择的大厅(健身房)的脚本中,我有一个学科(运动),对于每个学科,我有一个 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'); 具有纪律索引 a = 2,我将使用它来检索 qp 和 tarif 的值,然后将它们传递给脚本 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.
}
最佳答案
$(document).ready(function () {
var app = {},
app.qp = [],
app.tarif = [];
$('#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 = []; 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;
app.qp[i] = disciplines[i].qp_agent;
app.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);
$('#cities').append(opt);
//here i will append these new select options to a dropdown with the id 'disciplines'
});
}
});
});
// 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 qpValue = qp(qp, a);
var tarifValue = tarif(tarif, a);
});
function qp(qp, id) {
if (qp.indexOf(id) !== -1) {
return qp[id];
}
return '';
}
function tarif(tarif, id) {
if (tarif.indexOf(id) !== -1) {
return tarif[id];
}
return '';
}
});
关于php - 从函数传递一个数组并在其他函数中全局使用它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17503262/
我的应用程序中有一个 settings.php 页面,它使用 $GLOBALS 来存储网络应用程序中使用的配置。 例如,他是我使用的一个示例设置变量: $GLOBALS["new_login_page
我正在尝试编译我们在 OS 类上获得的简单操作系统代码。它在 Ubuntu 下运行良好,但我想在 OS X 上编译它。我得到的错误是: [compiling] arch/i386/arch/start
我知道distcp无法使用通配符。 但是,我将需要在更改的目录上安排distcp。 (即,仅在星期一等“星期五”目录中复制数据),还从指定目录下的所有项目中复制数据。 是否有某种设计模式可用于编写此类
是否可以在config.groovy中全局定义资源格式(json,xml)的优先级,而不是在每个Resource上指定?例如,不要在@Resource Annotation的参数中指定它,例如: @R
是否有一些简单的方法来获取大对象图的所有关联,而不必“左连接获取”所有关联?我不能只告诉 Hibernate 默认获取 eager 关联吗? 最佳答案 即使有可能有一个全局 lazy=false(谷歌
我正在尝试实现一个全局加载对话框...我想调用一些静态函数来显示对话框和一些静态函数来关闭它。与此同时,我正在主线程或子线程中做一些工作...... 我尝试了以下操作,但对话框没有更新...最后一次,
当我偶然发现 this question 时,我正在阅读更改占位符文本。 无论如何,我回去学习了占位符。一个 SO 的回答大致如下: Be careful when designing your pl
例如,如果我有这样的文字: "hello800 more text 1234 and 567" 它应该匹配 1234 和 567,而不是 800(因为它遵循 hello 的 o,这不是一个数字)。 这
我一直在尝试寻找一种无需使用 SMS 验证系统即可验证电话号码(Android 和 iPhone)的方法。原因纯粹是围绕成本。我想要一个免费的解决方案。 我可以安全地假设 Android 操作系统会向
解决此类问题的规范 C++ 设计模式是什么? 我有一些共享多个类的多线程服务器。我需要为大多数类提供各种运行时参数(例如服务器名称、日志记录级别)。 在下面的伪 C++ 代码中,我使用了一个日志记录类
这个问题在这里已经有了答案: Using global variables in a function (25 个答案) 关闭 9 年前。 我是 python 的新手,所以可能有一个简单的答案,但我
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Does C++ call destructors for global and class static
我正在尝试使用 Objective-C 中的 ArrayList 的等价物。我知道我必须使用 NSMutableArray。我想要一个字符串列表 (NSString)。关键是我的列表应该可以从我类(c
今天刚开始学习 Android 开发,我找不到任何关于如何定义 Helper 类或将全局加载的函数集合的信息,我会能够在我创建的任何 Activity 中使用它们。 我的计划是创建(至少目前)2 个几
为什么这段代码有效: var = 0 def func(num): print num var = 1 if num != 0: func(num-1) fun
$GLOBALS["items"] = array('one', 'two', 'three', 'four', 'five' ,'six', 'seven'); $alter = &$GLOBALS
我想知道如何实现一个可以在任何地方使用您自己的设置的全局记录器: 我目前有一个自定义记录器类: class customLogger(logging.Logger): ... 该类位于一个单独的
我需要使用 React 测试库和 Jest 在我的测试中模拟不同的窗口大小。 目前我必须在每个测试文件中包含这个beforeAll: import matchMediaPolyfill from 'm
每次我遇到单例模式或任何静态类(即(几乎)只有静态成员的类)的实现时,我想知道这是否实际上不是一种黑客行为,因此只是为了设计而严重滥用类和实例的原则单个对象,而不是设计类和创建单个实例。对我来说,看起
这个问题在这里已经有了答案: Help understanding global flag in perl (2 个回答) 7年前关闭。 my $test = "There was once an\n
我是一名优秀的程序员,十分优秀!