- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图有一个计数器显示未完成的任务总数。单击时,完整的内容会被划线标记。当我单击每个列表时,总数也应该减少 1。我创建了一个代表总数的变量 - 1,但总数仅在第一次单击时减少一次。拜托,我被这些困住了,而且我对 jQuery 还很陌生。
这是我的代码
$(document).ready(function() {
$('button').on('click', function() {
// Create variable to represent the value
var $value = $('input').val()
// Putting the values as list in web browser using if and else.
if ($value === "") {
alert("Enter your to do list")
} else {
$('.list').append("<li>" + $value + "</li>")
}
//Creating variable that will hold totoal number of list
var $count = $('li').length;
// Creating variable to repersent list subtraction
var $sub = $count - 1;
var $solution = $sub--;
// Underline the list when cliked by user
$('li').on("click", function() {
$(this).css('text-decoration', 'line-through')
$('.text').text("You have " + $solution + " uncompleted tasks")
});
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!DOCTYPE html>
<html>
<head>
<title>J-query Test</title>
<style>
h2 {
text-align: center;
}
body {
margin: 0;
padding: 15px 0 0 15px;
border-collapse: none;
}
li {
font-size: 20px;
font-family: 'candara';
}
</style>
</head>
<body>
<p>Write down your to do list</p>
<input type="text" name="list">
<button>Click</button>
<ul class="list">
<li>To do list</li>
<li>To do list</li>
<li>To do list</li>
<li>To do list</li>
</ul>
<div class="text">
</div>
</body>
</html>
最佳答案
您可以使用类line
来实现您所需要的。避免嵌套点击事件,查看示例:
$(document).ready(function() {
var $count;
var $sub;
$('button').on('click', function() {
// Create variable to represent the value
var $value = $('input').val()
// Putting the values as list in web browser using if and else.
if ($value === "") {
alert("Enter your to do list")
} else {
$('.list').append("<li>" + $value + "</li>")
}
$count = $count + 1;
$('.text').text("You have " + $count + " uncompleted tasks")
});
// Underline the list when cliked by user
$(document).on("click", "li:not(.line)", function() {
$count = $('li:not(.line)').length;
$(this).addClass("line")
$count = $count - 1;
$('.text').text("You have " + $count + " uncompleted tasks")
});
});
.line{
text-decoration: line-through;
}
h2 {
text-align: center;
}
body {
margin: 0;
padding: 15px 0 0 15px;
border-collapse: none;
}
li {
font-size: 20px;
font-family: 'candara';
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!DOCTYPE html>
<html>
<head>
<title>J-query Test</title>
<script type="text/javascript" src="js/jqueryuncomp-3.3.1.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<p>Write down your to do list</p>
<input type="text" name="list">
<button>Click</button>
<ul class="list">
<li>To do list</li>
<li>To do list</li>
<li>To do list</li>
<li>To do list</li>
</ul>
<div class="text">
</div>
</body>
</html>
关于jquery - jQuery中点击时元素总数自动减一,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51766248/
menu Home Events Technical Schedule
我试图阻止触发默认 anchor 链接和 onclick 事件。 这是 HTML 代码: Google 我正在尝试使用以下 jQuery 代码阻止任何重定向的发生: $("#mylink").cli
我想在单击父 div 上的任意位置时切换我的 div,除非单击 anchor 元素。因此,例如,如果我单击示例中的第一个文本,我希望它切换,但在我的示例中的第二个文本上,我不希望它切换。 JSFidd
我在通过 jQuery 伪造 anchor 点击时遇到问题:为什么我的thickbox在我第一次点击输入按钮时出现,但第二次或第三次却没有出现? 这是我的代码: Link 当我直接点击链接时,它总是
我已经从 Mootools 切换到 jQuery,因为我认为它有更好的支持。我有这样的 HTML: Opcje Opcje Opcje Opcje Opcje Opcje Opcje JS
我是一名优秀的程序员,十分优秀!