我不会在这里粘贴整个脚本,因为它太长了! 这是链接和演示: http://www.htmldrive.net/items/show/775/Sliding-up-form-labels-with-jquery-and-CSS3
我遇到的问题是,我不知道如何让它适用于输入:密码 - 目前设置为:
jQuery( 'input:text' ).each( function( )
如果我把jQuery('input:text,input:password').each(function()脚本不再工作了!
任何解决方案?我没有太多的javascript或jquery knowladge - 谢谢!
答案 0 :(得分:1)
试试这个:
$("input:password").each(function(){
alert($(this).attr('name'));
});
你可以在这里看到它:http://jsfiddle.net/Uhhxf/2/
答案 1 :(得分:1)
将初始选择器从jQuery('input:text')
更改为:jQuery('input:text, input:password')
使其适用于我:JS Fiddle demo(顺便说一下,'zip'字段是我使用的唯一input:password
字段,但是,它确实按预期工作。)
这是在Ubuntu 11.04上的Firefox 4.x和Chromium 11中,虽然我看不出为什么它不应该在其他平台上的其他浏览器中工作。
参考文献: