所有的手风琴行一下子打开,如何解决?

时间:2016-07-27 09:43:19

标签: c# jquery html css umbraco

此页面使用包含富文本元素的手风琴。 JS用于切换活动类,该活动类更改其上的max-height值,显示其中的抽象内容。

我遇到了一个问题,超链接无法在其中工作,因为max-height值是干扰的;导致手风琴再次打开/关闭而不是能够定位文本(尝试使用z-index但似乎没有做到这一点)。

我回到了JS和CSS文件中,以便将手风琴的标题作为一个单独的类来定位。这解决了超链接的问题,但现在当我点击其中一个手风琴时,所有这些手风琴都会立即打开,而这在以前没有发生过。

Image

标记

<Dependencies>
  <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
  <PackageDependency Name="Microsoft.NET.Native.Runtime.1.4" MinVersion="1.4.24201.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
</Dependencies>

脚本

<div class="accordion-row">
@foreach ( var item in Model.Items ) {
    <div class="teaser">
    <div class="teaser-title">
        @item.GetValue( "title" )
  </div>
        <div class="abstract">
            @Html.Raw(item.GetValue( "content" ))
        </div>
    </div>
}

1 个答案:

答案 0 :(得分:0)

试试这个

compileSdkVersion 19
buildToolsVersion '19.1.0'

defaultConfig {
    applicationId "itp231.dba.nyp.com.myproject2016"
    minSdkVersion 15
    targetSdkVersion 19
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}