我在课堂上有一个焦点绑定。我试过jQueryunbind
方法。似乎不起作用。
这只是一个例子:
<html>
<body>
<input type="text"/>
</body>
</html>
module TheClass {
export class MyClass {
private static focusHandler = () => { console.log("hello from log"); };
public static bindInput() {
$("input").bind("focusin", MyClass.focusHandler);
}
public static unbindInput() {
$("input").unbind("focusin", MyClass.focusHandler);
}
}
}