作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
$( document ).ready(function() {
$('#btnSoumettre').click(function(){
$('.must').each(function( index ) {
if( !$(this).val() ) {
$(this).css('border-color','red');
$(this).after( "*" );
}
});
});
});
这是一个简单的 jQuery。我想知道的是如何添加我的字符串并使其变为红色?
最佳答案
根据评论编辑:
您可以执行以下操作以在没有值时激活边框,并在输入值时将其移除。
$(document).ready(function() {
$('#btnSoumettre').click(function() {
$('.must').each(function(index) {
if (!$(this).val()) {
$(this).css('border-color', 'red');
$(this).next('span').css('display', 'inline');
} else {
$(this).css('border-color', 'initial');
$(this).next('span').css('display', 'none');
}
});
});
});
span {
display: none;
color: red;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
first <input class="must" value="value1"><span> required</span><br>
second - no value <input class="must"><span> required</span><br>
third <input class="must" value="value3"><span> required</span><br>
fourth no value <input class="must"><span> required</span><br>
<button id="btnSoumettre">validate</button>
关于javascript - 如何将 css 添加到 Jquery 中的 .after 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45551175/
我是一名优秀的程序员,十分优秀!