- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在处理我的代码,它的工作是,但 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/
尝试从 parsCit 运行这个小 perl 程序: parsCit-client.pl e1.txt Too late for -CSD option at [filename] line 1 e1
我通常这样做: git init git add . git commit . 然后我意识到它即将添加我想要排除/忽略的 nbproject 目录。有时,我什至检查这个目录。如果我在运行 git ad
我正在处理我的代码,它的工作是,但 Action (插入 css)是 Action 的后期。 jQuery(document).ready(function() { jQuery("#cal
我是一名优秀的程序员,十分优秀!