我有一个输入字段,在模糊和焦点上调用函数“inputInlineHint(self)”.
它也通过自我……
它也通过自我……
<input type="text" id="one" class="textBox" value="Your Name" onfocus="inputInlineHint(self);" onblur="inputInlineHint(self);" />
现在我想检索该字段的当前值:
function inputInlineHint(e) { var theValue = ''; //Now i need to retrieve the value... but how? }
我希望你们可以帮助我…应该是非常基本但我是jquery的新手.
提前致谢!