- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我创建了一个名为 Audience Demographics 的模态框,在我的模态框中是一组主要流派,它打开了另一个包含我的子流派的模态框。
问题在于,当用户单击主要类型(例如人口统计)时,在下一个模态框打开主要类型(例如人口统计)之前的短暂时间将快速将字体颜色更改为红色。
现在字体颜色在我的任何主要流派时期都不应改变。
除此之外,我的主要流派的字体颜色似乎没有改变,即使我手动将 color:white 代码实现到 html 元素中(子流派应该是白色的,而不是蓝色的)。
请问有什么问题吗?
// maintains a sticky pop up (original code)
$('a[href="#ex6-1b"]').click(function(event) {
event.preventDefault();
$(this).modal({
escapeClose: false,
clickClose: false,
showClose: false,
});
});
// allows mutliple modals
var content = "";
$('a[href="#ex6-2bc"],a[href="#ex6-2b"],a[href="#ex6-3b"]').click(function(event) {
event.preventDefault();
$(this).modal({
closeExisting: true,
escapeClose: false,
clickClose: false,
showClose: false,
});
$('input[type=checkbox]').prop('checked', false);
});
.onlyThese {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
input[type="checkbox"]+label {
color: white
}
input[type="checkbox"] {
display: none
}
input[type="checkbox"]:checked+label {
color: red
}
input:focus {
outline: none;
}
.your-divs {
float: right;
bottom: 0;
right: 0;
position: absolute;
padding-right: 30px;
padding-bottom: 15px;
margin-bottom: 0px;
font-size: 16px
}
.blackBox {
border-style: solid;
border-color: black;
background-color: black;
margin-bottom: 3px;
padding-top: 12px;
padding-bottom: 12px;
padding-left: 7px;
font-family: nunito;
font-size: 14px;
}
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"></script>
<!-- Remember to include jQuery :) -->
<!-- jQuery Modal -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css" />
<div class="blackBox" data-name="audience">
<a class="btn" href="#ex6-1b" style="color:white"> <b> Audience Demographics </b> </a>
</div>
<div class="modal" id="ex6-1b" style="display:none; background-color:black">
<div style="float:left;">
<div style="line-height:1.8; font-size:16px; color:white; text-transform:uppercase">
<p> <a href="#ex6-2bc"><b>Demographics</b></a> </p>
<p> <a href="#ex6-2b"><b>LGBTQ</b></a> </p>
<p> <a href="#ex6-3b"><b>BAME</b></a> </p>
</div>
</div>
<div class="your-divs">
<p style="color:white; text-transform:uppercase">
<a href="#" rel="modal:close" class="onlyThese;"> <b>Return</b></a>
</p>
</div>
</div>
<div class="modal" id="ex6-2bc" style="display:none; background-color:black">
<div style="line-height:1.8; font-size:16px">
<p> <input type="checkbox" id="group19"> <label for="group19" class="onlyThese" name="male"> <b> Cis Male </b> </label> </p>
<p> <input type="checkbox" id="group29"> <label for="group29" class="onlyThese" name="female"> <b> Cis Female </b> </label> </p>
<p> <input type="checkbox" id="group39"> <label for="group39" class="onlyThese" name="non-binary"> <b> Non Binary </b> </label> </p>
</div>
<div class="your-divs">
<p style="color:white; text-transform:uppercase">
<a href="#" rel="modal:close" class="onlyThese"> <b>Apply</b></a>
</p>
</div>
</div>
<div class="modal" id="ex6-2b" style="display:none; background-color:black">
<div style="line-height:1.8; font-size:16px">
<p> <input type="checkbox" id="group10"> <label for="group10" class="onlyThese" name="gay"> <b> Gay </b> </label> </p>
<p> <input type="checkbox" id="group20"> <label for="group40" class="onlyThese" name="lesbian"> <b> Lesbian </b> </label> </p>
<p> <input type="checkbox" id="group30"> <label for="group30" class="onlyThese" name="bisexual"> <b> Bisexual </b> </label> </p>
<p> <input type="checkbox" id="group40"> <label for="group40" class="onlyThese" name="bisexual"> <b> Transgender </b> </label> </p>
<p> <input type="checkbox" id="group50"> <label for="group50" class="onlyThese" name="queer_non_conforming"> <b> Queer Non-Conforming </b> </label> </p>
</div>
<div class="your-divs">
<p style="color:white; text-transform:uppercase">
<a href="#" rel="modal:close" class="onlyThese"> <b>Apply</b></a>
</p>
</div>
</div>
<div class="modal" id="ex6-3b" style="display:none; background-color:black">
<div style="line-height:1.8; font-size:16px">
<p> <input type="checkbox" id="group11"> <label for="group11" class="onlyThese" name="mix_multiple_ethic"> <b> Mixed / Multiple Ethnic </b> </label> </p>
<p> <input type="checkbox" id="group22"> <label for="group22" class="onlyThese" name="asian_british_asian"> <b> Asian / British Asian </b> </label> </p>
<p> <input type="checkbox" id="group33"> <label for="group33" class="onlyThese" name="black_african_caribbean"> <b> Black African / Black Caribbean </b> </label> </p>
<p> <input type="checkbox" id="group44"> <label for="group44" class="onlyThese" name="other_ethic_group"> <b> Other Ethnic Group </b> </label> </p>
</div>
<div class="your-divs">
<p style="color:white; text-transform:uppercase">
<a href="#" rel="modal:close" class="onlyThese"> <b>Apply</b></a>
</p>
</div>
</div>
最佳答案
红色是事件链接的默认值
添加
a:visited { color:yellow }
a:active { color:pink }
如果你想改变颜色
// maintains a sticky pop up (original code)
$('a[href="#ex6-1b"]').click(function(event) {
event.preventDefault();
$(this).modal({
escapeClose: false,
clickClose: false,
showClose: false,
});
});
// allows mutliple modals
var content = "";
$('a[href="#ex6-2bc"],a[href="#ex6-2b"],a[href="#ex6-3b"]').click(function(event) {
event.preventDefault();
$(this).modal({
closeExisting: true,
escapeClose: false,
clickClose: false,
showClose: false,
});
$('input[type=checkbox]').prop('checked', false);
});
a:visited { color:yellow }
a:active { color:pink }
.onlyThese {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
input[type="checkbox"]+label {
color: white
}
input[type="checkbox"] {
display: none
}
input[type="checkbox"]:checked+label {
color: red
}
input:focus {
outline: none;
}
.your-divs {
float: right;
bottom: 0;
right: 0;
position: absolute;
padding-right: 30px;
padding-bottom: 15px;
margin-bottom: 0px;
font-size: 16px
}
.blackBox {
border-style: solid;
border-color: black;
background-color: black;
margin-bottom: 3px;
padding-top: 12px;
padding-bottom: 12px;
padding-left: 7px;
font-family: nunito;
font-size: 14px;
}
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"></script>
<!-- Remember to include jQuery :) -->
<!-- jQuery Modal -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css" />
<div class="blackBox" data-name="audience">
<a class="btn" href="#ex6-1b" style="color:white"> <b> Audience Demographics </b> </a>
</div>
<div class="modal" id="ex6-1b" style="display:none; background-color:black">
<div style="float:left;">
<div style="line-height:1.8; font-size:16px; color:white; text-transform:uppercase">
<p> <a href="#ex6-2bc"><b>Demographics</b></a> </p>
<p> <a href="#ex6-2b"><b>LGBTQ</b></a> </p>
<p> <a href="#ex6-3b"><b>BAME</b></a> </p>
</div>
</div>
<div class="your-divs">
<p style="color:white; text-transform:uppercase">
<a href="#" rel="modal:close" class="onlyThese;"> <b>Return</b></a>
</p>
</div>
</div>
<div class="modal" id="ex6-2bc" style="display:none; background-color:black">
<div style="line-height:1.8; font-size:16px">
<p> <input type="checkbox" id="group19"> <label for="group19" class="onlyThese" name="male"> <b> Cis Male </b> </label> </p>
<p> <input type="checkbox" id="group29"> <label for="group29" class="onlyThese" name="female"> <b> Cis Female </b> </label> </p>
<p> <input type="checkbox" id="group39"> <label for="group39" class="onlyThese" name="non-binary"> <b> Non Binary </b> </label> </p>
</div>
<div class="your-divs">
<p style="color:white; text-transform:uppercase">
<a href="#" rel="modal:close" class="onlyThese"> <b>Apply</b></a>
</p>
</div>
</div>
<div class="modal" id="ex6-2b" style="display:none; background-color:black">
<div style="line-height:1.8; font-size:16px">
<p> <input type="checkbox" id="group10"> <label for="group10" class="onlyThese" name="gay"> <b> Gay </b> </label> </p>
<p> <input type="checkbox" id="group20"> <label for="group40" class="onlyThese" name="lesbian"> <b> Lesbian </b> </label> </p>
<p> <input type="checkbox" id="group30"> <label for="group30" class="onlyThese" name="bisexual"> <b> Bisexual </b> </label> </p>
<p> <input type="checkbox" id="group40"> <label for="group40" class="onlyThese" name="bisexual"> <b> Transgender </b> </label> </p>
<p> <input type="checkbox" id="group50"> <label for="group50" class="onlyThese" name="queer_non_conforming"> <b> Queer Non-Conforming </b> </label> </p>
</div>
<div class="your-divs">
<p style="color:white; text-transform:uppercase">
<a href="#" rel="modal:close" class="onlyThese"> <b>Apply</b></a>
</p>
</div>
</div>
<div class="modal" id="ex6-3b" style="display:none; background-color:black">
<div style="line-height:1.8; font-size:16px">
<p> <input type="checkbox" id="group11"> <label for="group11" class="onlyThese" name="mix_multiple_ethic"> <b> Mixed / Multiple Ethnic </b> </label> </p>
<p> <input type="checkbox" id="group22"> <label for="group22" class="onlyThese" name="asian_british_asian"> <b> Asian / British Asian </b> </label> </p>
<p> <input type="checkbox" id="group33"> <label for="group33" class="onlyThese" name="black_african_caribbean"> <b> Black African / Black Caribbean </b> </label> </p>
<p> <input type="checkbox" id="group44"> <label for="group44" class="onlyThese" name="other_ethic_group"> <b> Other Ethnic Group </b> </label> </p>
</div>
<div class="your-divs">
<p style="color:white; text-transform:uppercase">
<a href="#" rel="modal:close" class="onlyThese"> <b>Apply</b></a>
</p>
</div>
</div>
关于javascript - 为什么我的链接在点击后颜色会短暂地变为红色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57524020/
当点击content 时,我想触发我的alert。我的 content 中可以有任意数量的子元素,所以我不想对每个元素都进行硬编码。我想也许我可以监听对该父元素的点击,然后每次点击子元素都会触发我的操
对于 Mac 应用程序,我想检测应用程序中的用户事件,因此我可以定期让 Web 服务知道用户在端点上仍然处于事件状态。 在 Cocoa Touch 中,我会覆盖 UIApplication 的 sen
第一次在这里发帖,但天知道我一直使用这个网站来搜索问题 :P 好吧,我现在遇到了自己的问题,我似乎无法轻松地在 Google 上搜索,在玩了大约 2 小时后,我终于决定发布一个问题,看看你们是怎么想的
Angular 触控 ngTouch导致在触摸释放时发生点击。 有没有办法让点击发生在触摸开始? fast-click下面的指令似乎可以在触摸屏上执行我想要的操作,但它不适用于鼠标点击。 myApp.
1) 如果我有这个,当我点击子 Container 时它不会打印'tap': Container( color: Colors.red, child: GestureDetector(
我简直要发疯了,只是想从 jQuery 中的事件中解除 onclick 处理程序的绑定(bind),以便稍后可以将其绑定(bind)到另一个函数。 我已将代码隔离在测试页中,因此除了核心之外什么都没有
我有一个有趣的情况。我需要触发实时点击,因为简单的点击不起作用。 这就是我所拥有的: $('.text').trigger('click'); 但我需要这样的东西: $('.text').trigge
这是我的作业,这是我第一次做表单验证。以下代码分别是我的HTML代码和JavaScript代码。 HTML 代码: First N
正如标题所示,如何获取 Magento 中特定产品的浏览量/点击量/展示次数。欢迎任何帮助。 最佳答案 这个简单的示例将为您提供在您指定的日期+其查看次数之间查看过的产品列表: $fromDate =
我正在创建一个应用程序,但在其中遇到错误。我想在按钮上添加 OnclickListner。该按钮位于 fragment 类上。从这个 fragment 类我想继续另一个类。代码如下: fragment
我在数组中有一些值。首先,我想在 View 中显示该数组的前两个值,接下来我想在某些按钮单击操作后显示剩余的值,并将数组索引增加 1。例如:一次点击显示第三个值,然后另一次点击显示第四个值。 我怎样才
在下面的代码片段中,如果在链接上执行“CMD+CLICK”,则不会显示 alert('CMD')。这是为什么? 我想在用户按下 CMD 按钮(或 Windows 上的 CTRL 键)+单击 href
我希望在单击链接时开始加载一些内容。在单击该链接之前,我不希望它使用任何带宽。另外如何实现几乎所有灯箱中都能看到的旋转光标动画? 最佳答案 使用$.ajax()函数动态加载内容。 对于动画,请找到一个
我有如下的 DOM: users 当用户点击按钮时,它会将新的“td”附加到“tr”。它运作良好。问题:单击“a”我想打开两个链接。最好的方法是首先将当前页面重定向到另一个页面,然后
这是我正在尝试做的.. 点击按钮会显示一个随机数组项。 数组项只能显示一次。 目前我已经将代码设置为: 点击随机数组项显示。 按钮点击继续循环,没有结束。 按钮点击多次显示元素。 这是代码的链接 ht
我想创建...基本上是一个宏程序。点击记录后,它会记录所有鼠标(可能最终是键盘)事件。然后你可以保存,然后播放,鼠标应该移动并点击在相同的地方当你录制它时它会发生。 我知道如何获取全局鼠标事件,但我不
我有一个关于将 onClick 添加到 ListView 的问题,我已经尝试尽可能多地遵循 Android NotePad 教程,但是对于我的布局我不太明白如何添加它。 这是 Activity 类,它
我正在使用一个网站以表格的形式显示信息。用户可以单击表格中的行来更改它们的颜色,我还有一个按钮允许用户暂停页面的刷新,这样就不会添加新信息。这两个功能都适用于桌面,但不适用于触摸屏。我的第一个想法是触
所以我的网站上有一个正常的链接,我想为它添加跟踪。我可以设想很多方法来做到这一点,但我已经确定通过编写一个小的 jquery 函数并在我的标签中放置一个小片段来实现这一点非常简单: click me!
我正在尝试使我的图片按钮看起来不错。我尝试了几种不同的方法,但它们看起来都不对。这是一个圆形图像,我想让它看起来像是可以按下的。这是我到目前为止所得到的。 android:textAppearance
我是一名优秀的程序员,十分优秀!