我有一个输入框$myInput = $('<input/>').val('Some text')
。
我想淡出输入框的文本,但不输入框本身。我可以使用jQuery吗?
答案 0 :(得分:1)
$myInput.animate({'color':'white'});
淡出它。淡出它
$myInput.animate({'color':'black'});
我假设你在输入上有白色背景
答案 1 :(得分:1)
您可以使用the color animation plugin将文本颜色设置为输入的背景颜色(很可能是白色)。