gpt4 book ai didi

javascript - 使用 Javascript .click 插入 Css(为时已晚)

转载 作者:太空宇宙 更新时间:2023-11-03 19:04:03 24 4
gpt4 key购买 nike

我正在处理我的代码,它的工作是,但 Action (插入 css)是 Action 的后期。

jQuery(document).ready(function() {

jQuery("#cal2tozindex").click(function() {
jQuery("#cal2tozindex").css('z-index','1000');
jQuery("#cal3tozindex").css('z-index','1');
});

jQuery("#cal3tozindex").click(function() {
jQuery("#cal3tozindex").css('z-index','1000');
jQuery("#cal2tozindex").css('z-index','1');
});

});

有 url,您可以在该部分的右侧,然后单击上面有一个名为“vols”的平面的 bleu 按钮。 http://www.voyagesendirect.me/multisites/esther/

我想要什么:

When you click on the first field : 'date de départ' (cal2tozindex) he should became with a z-index:1000; and the other field : 'date de retour' (cal3tozindex) should be with z-index:1;

Same patern with you click on the second field.

我的实际问题:

css 的插入太晚了,javascript 在您单击日期之后放置了 css,而不是在您首先单击该字段时放置了 css。我真的需要代码在第一次点击时(在现场)而不是在第二次点击时(在某个日期)起作用。

感谢大家帮我解决这个问题!

最佳答案

jQuery(document).ready(function() {        
jQuery("#date_dep_calFLT").focus(function() {
jQuery("#cal2tozindex").css('z-index','1000');
jQuery("#cal3tozindex").css('z-index','1');
});
jQuery("#bt-cal_FLT").click(function() {
jQuery("#cal2tozindex").css('z-index','1000');
jQuery("#cal3tozindex").css('z-index','1');
});

jQuery("#date_ret_calFLT").focus(function() {
jQuery("#cal3tozindex").css('z-index','1000');
jQuery("#cal2tozindex").css('z-index','1');
});

jQuery("#bt-cal_FLT_ret").click(function() {
jQuery("#cal3tozindex").css('z-index','1000');
jQuery("#cal2tozindex").css('z-index','1');
});

});

关于javascript - 使用 Javascript .click 插入 Css(为时已晚),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11033325/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com