清除输入框onclick图像

时间:2012-04-03 21:52:17

标签: javascript onclick inputbox

此行更新验证码图像,它应该清除输入框'验证码'以及。

    <div id="refresh_button"><a href="#" onclick="refreshimg();return false;"><img src="refresh.gif"/></a></div>

    <input type="text" maxlength="6" name="captcha" id="captcha" class="captcha_inputbox" />

所以我必须修改onClick,但我找不到这个,甚至没有google。

非常感谢您的帮助

2 个答案:

答案 0 :(得分:2)

您可以使用以下方法清除文本框的值:

document.getElementById('captcha').value = '';

或者,如果你正在使用jQuery:

$('#captcha').val('');

答案 1 :(得分:1)

最好在脚本标签中执行此操作。例如,你可以这样做:

<script type='text/javascript'>
   function refreshimg() {
      // do the refreshing here

      // since your input text has an id of 'captcha'
      document.getElementById("captcha").value = "";

      return false;
   }
</script>

然后在你的HTML中,你会做

<div id="refresh_button"><a href="#" onclick="return refreshimg();"><img src="refresh.gif"/></a></div>
<input type="text" maxlength="6" name="captcha" id="captcha" class="captcha_inputbox" />