我有一个 HTA,它在对话框页面中打开一个 showmodaldialog 和这个 JavaScript 代码:
function helpButton(){
document.body.style.curosor = "help";
my_div.onclick = function(){alert("Help for the div is displayed here")}
}
我想要 showmodaldialog 标题栏中的帮助按钮,如下图所示:
(不要介意图片是法语的,这是我电脑的语言)
当我按下那个帮助按钮时,我希望它执行该helpButton()
功能。