如何在type =“password”中使用onchange?
首先我使用onchange但不工作
<input type="password" name="txtPassword" id="txtPassword" OnChange="JavaScript:doCallAjax();">
然后我编辑使用onclick它的工作,我怎么能在ytpe =“password”中使用onchange
<input type="password" name="txtPassword" id="txtPassword" OnClick="JavaScript:doCallAjax();">
onchange
与type="password"
一起使用的最佳方法是什么?