我使用了来自http://dropthebit.com/580/fancy-input-jquery-plugin/的代码,到目前为止效果很好,但我不知道如何从焦点所在的文本框中删除数据。
这是我认为可能相关的一些代码:
$('section :input').val('').fancyInput()[0].focus();
// Everything below is only for the DEMO
function init(str){
var input = $('section input').val('')[0],
s = 'Type Something ?'.split('').reverse(),
len = s.length-1,
e = $.Event('keypress');
var initInterval = setInterval(function(){
if( s.length ){
var c = s.pop();
fancyInput.writer(c, input, len-s.length).setCaret(input);
input.value += c;
//e.charCode = c.charCodeAt(0);
//input.trigger(e);
}
else clearInterval(initInterval);
},150);
}
init();