我有一個輸入框,它調用模糊和焦點上的函數「inputInlineHint(self)」。 它還傳遞了自我......JQuery獲取元素的值:onfocus =「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。
在此先感謝!
非常感謝。這就是我一直在尋找的! – n00b 2010-02-19 11:04:53