我有简单的要求 我是jquery的初学者所以我想做的就是做
单击它时按按钮增加计数器变量并仅更新页面上的标签 不是所有页面 我也将使用相同的代码在页面中制作时钟 谢谢
答案 0 :(得分:0)
如果没有尝试某些代码,很难获得特定的帮助,但这里是如何阅读单击,增加计数器,更新标签和调用make时钟功能。
$(function() {
function incrementCounter() {
var $counter = $('#counter'),
count = parseInt($counter).text());
if (!count) count = 0;
count++;
$counter.text(count);
}
function updateLabel(newText) {
$('label').text(newText);
}
function makeClock() {
// I have no idea what you mean by this but insert your code here.
}
$('button').click(function() {
incrementCounter();
updateLabel();
makeClock();
});
});
答案 1 :(得分:0)
你可以这样做的增量:
<script type="text/javascript" src="jquery-1.6.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#button').click(function() {
current = parseInt($('#label').html());
$('#label').html(current+1);
});
});
</script>
<input type='button' value=' Increase! ' id='button' />
Count: <span id='label'>0</span>