- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在 stackoverflow 上遇到过类似的问题,但似乎找不到我正在寻找的解决方案,所以我发布了我的问题。
我有 2 个复选框(在条款和条件页面中),除非用户选中(同意)两个复选框,否则 continue
按钮将不会启用!这在 chrome 和 IE 9 及更高版本中工作正常。
但这是 IE8 中的一个问题,问题是:
1) 用户能够选中复选框,但继续
按钮不起作用!
2) 当光标悬停在 continue
按钮上时,它会变成文本输入光标!这一切都很奇怪。
下面是我的复选框 html。
<label for="f_agree2" class="approval"><input type="checkbox" id="f_agree2" value="1" onclick="checkedFunc('f_agree', 'f_agree2')" name="@parqForm("safety").name" /> I have read the above information making me aware of my requirements to:
<label for="f_agree" class="approval"><input type="checkbox" id="f_agree" value="1" onclick="checkedFunc('f_agree', 'f_agree2')" name="@parqForm("parq").name" /> I have read, understood and completed the PAR-Q, answering NO to all of the questions.</label>
下面是我的 jquery:
function checkedFunc(element1Id, element2Id) {
var myLayer = document.getElementById('acceptbtn');
var element1 = document.getElementById(element1Id);
var element2 = document.getElementById(element2Id);
if (element1.checked === true && element2.checked === true) {
myLayer.class = "submit"; // displaying error in here
myLayer.removeAttribute("disabled");
} else {
myLayer.class = "button:disabled";
myLayer.setAttribute("disabled","disabled");
};
}
错误如下:
Object expected
Code: 0
URL : //Url of the page
更新
Continue
按钮 html:
<div class="options">
<button type="submit" disabled="disabled" id="acceptbtn" class="parqSubmit-grey">Continue</button>
</div>
button:disabled
的 CSS
input.submit:disabled, button.submit:disabled, input.button:disabled, button:disabled, a.button:disabled {
background: #A5A5A5;
color: #D5D5D5;
text-shadow: none;
border-color: #888;
}
最佳答案
试试这个:
if (element1.checked === true && element2.checked === true) {
myLayer.className = "submit";
myLayer.removeAttribute("disabled");
} else {
myLayer.className = "parqsubmit-Grey";
myLayer.setAttribute("disabled","disabled");
};
:disabled
不是类名的一部分,它是具有 disabled
属性的元素的 CSS 选择器。
关于jquery - 复选框在 IE8 (JQuery) 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29597525/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!