我在我使用的地方有以下一段 Javascript attachEvent
。
crmForm.all.new_height.attachEvent ("onkeyup", doCalc);
function doCalc ()
{
alert("hello");
}
其中 new_height 是一个字段。onkeyup
所以我的目标是在new_height
现场触发事件。所以我在表单事件中使用了这个 Javascript ,但是当我写入字段OnLoad
文本时它没有触发。new_height