作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我只想添加一个单选按钮行为(只选中一个元素,选中时更改颜色,选中另一个时删除选中的颜色。)到我怎样才能在 javascript 中做到这一点?这是我的点击事件。
$(document).on('click', '[data-change-option]', function(e) {
e.preventDefault();
console.log(e.target);
var optionIndex = parseInt($(this).data('changeOption')), optionValue = $(this).data('changeValue');
if(optionSelectors.optionExistInSelect(optionSelectors.selectors[optionIndex].element, optionValue)) {
$(optionSelectors.selectors[optionIndex].element).val(optionValue).trigger('change');
}
});
最佳答案
将该类型的所有元素重置为基色,而不是将单击的元素更改为事件颜色:
$(document).on('click', '[data-change-option]', function() {
$('[data-change-option]').css('color', '');
$(this).css('color', 'red');
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a href="#1" data-change-option="">Link 1</a>
<a href="#1" data-change-option="">Link 2</a>
<a href="#1" data-change-option="">Link 3</a>
关于javascript - 如何将单选按钮行为添加到 <a>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49637872/
我是一名优秀的程序员,十分优秀!