我找不到如何将事件绑定到ext.js中的几个元素,或者在页面上的所有元素初始化之后触发的任何特定事件,所以我想问一下如何将事件绑定到页面上的几个元素或者在页面上的所有组件初始化后触发它。
答案 0 :(得分:0)
在body的load事件中,只需将事件附加到任何元素
实施例 Java脚本
window.onload = function()
{
var Elements = document.getElementsByTagName('INPUT');
for(var i =0;i<Elements.length;i++)
{
Elements[i].onclick = function(e)
{
//do what you want to do here to be handled on the onclick event
}
}
}
此致 我在这里发表任何评论