我今天早些时候试图创建一个 jQuery 微调器类型的东西,有人给了我这段代码,它在按钮单击时向上/向下增加文本字段值。极好的。但是,如果值为 0 - 零,您将如何禁用 .desc 按钮。在 PHP 中很容易 if <=0 then this etc...但我不知道 jQuery ..
还有任何想法如何使用它来向上/向下移动无序的 html 列表,即 ul li?
$(document).ready(function()
{
$(function()
{
$(".inc").click(function()
{
$(":text[name='qty']").val(Number($(":text[name='qty']").val()) + 1);
});
$(".dec").click(function()
{
$(":text[name='qty']").val(Number($(":text[name='qty']").val()) - 1);
});
});
});
这使用了一种形式:
<input type="text" name="qty" value="0" />
<img src="img/up.png" class="inc" width="20px" height="9px" alt="Increase" title="increase" />
<img src="img/down.png" class="dec" width="20px" height="9px" alt="Decrease" title="Decrease" />