好的,我有一个输入标签。我使用了 jquery 输入提示,因此它显示了 title="password"。但是,如果它的类型是密码,它就不会显示标题,它只会看起来*。因此,我需要将输入输入为“文本”类型,然后将其更改为输入:焦点上的“密码”,并在失去焦点时返回文本。我如何用jquery做到这一点?
<input name="pwd" type="text" class="pwd" value="" title="Password"/>
// look like below on focus and back to text on focus out
<input name="pwd" type="password" class="pwd" value="" title="Password"/>