English 中文(简体)
Nest·Qu
原标题:Nested jQuery toggle statements

我有这样一种情况,即我在“Qu”的洞.中发表了“nes”。

我有一组选择,使用户可以确定一天为开放或关闭。

然后,我有一个选择,让用户能够说明所有几天的细节。 详细情况是隐蔽的(这造成了我的问题)。

如果用户安排一天时间关闭,那么当用户选择展示所有天数的细节时,我不想显示这一天。 例如,如果mon天被关闭,而该周的其余时间是开放的,用户选择“显示细节”,则除星期一外,将显示所有天数的细节。

如果我开始了解所有细节(你可以藏匿并显示细节,不展示闭门日),这项工作就会受到罚款。 但是,由于违约,这些细节是隐蔽的,如果用户安排了几天时间关闭,然后显示其详细情况,甚至显示所有日子的细节。

在含有 d的gle角发生变化时,是否可以轻易地坚持“封顶”的 to角?

我已举出一个粗略的例子,说明这个支部的情况。

http://jsfiddle.net/yTt3t/16/>rel=“nofollow> http://jsfiddle.net/yTt3t/16/

感谢任何援助。

最佳回答

事实上,问题是,你改变可见度的内容的括号最初是隐蔽的。 我假定,“金色”能够发挥某种优化作用,以避免不必要的中央支助事务和人力变动。

如果你通过一个 b子到,>.toggle()<><>>>>>>>><>>

$("#monday_select").change(function(){
    $("#monday_details").toggle(this.value ===  Open );
});

$("#tuesday_select").change(function(){
    $("#tuesday_details").toggle(this.value ===  Open );
});

论点控制了该要素是否应当显示(true)或隐藏(false)。

rel=“nofollow>DEMO

问题回答

暂无回答




相关问题
getGridParam is not a function

The HTML: <a href="javascript:void(0)" id="m1">Get Selected id s</a> The Function: jQuery("#m1").click( function() { var s; s = jQuery("#list4").getGridParam( selarrrow )...

selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

jQuery cycle page with links

I am using the cycle plugin with pager functionality like this : $j( #homebox ) .cycle({ fx: fade , speed: fast , timeout: 9000, pager: #home-thumbs , ...

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

jConfirm with this existing code

I need help to use jConfirm with this existing code (php & Jquery & jAlert). function logout() { if (confirm("Do you really want to logout?")) window.location.href = "logout.php"; } ...

Wrap text after particular symbol with jQuery

What I m trying to do, is wrap text into div inside ll tag. It wouldn t be a problem, but I need to wrap text that appears particularly after "-" (minus) including "minus" itself. This is my html: &...

热门标签