1.oninput,onpropertychange,onchange的用法 l onchange触发事件必须满足两个条件: a)当前对象属性改变,并且是由键盘或鼠标事件激发的(脚本触发无效) b)当前对象失去焦点(onblur): l onpropertychange的话,只要当前对象属性发生改变,都会触发事件,但是它是IE专属的: l oninput是onpropertychange的非IE浏览器版本,支持firefox和opera等浏览
package com.a.b; import java.io.*; public class Yu { public static void main(String[] args) throws IOException { // InputStream is=new InputStream(System.in); InputStreamReader isr = new InputStreamReader(System.in); BufferedReader st = new BufferedR