asp js如何获取ImageButton的Tooltip属性的值
添加一个ImageButton,ToolTip设置为“hello”,运行查看生成的静态html代码,就可以看到它是变成了一个<input type="image" title="hello" id="xxx" />
你会发现,ToolTip会对应input的title,那么你用js获取这个input的title属性就可以了~
var toolTip = $("#xxx").attr("title");
title和alt