运行 使用 SmartClient 加载页面的函数

Run a function on page load using SmartClient

当页面加载时,我想根据用户权限隐藏一些按钮。

我有一个功能可以满足我的需要,但目前我必须按下按钮才能调用它。

如何使用 SmartClient 在页面加载后立即 运行 applyUserPermissions 函数?

function applyUserPermissions(){
    btn.setDisabled(false);
}

与普通版相同Javascript

The statements are executed, one by one, in the same order as they are written.

~ w3c Javascript School

像这样:

<script>

function applyUserPermissions(){
    btn.setDisabled(false);
}

// calls it on page load
applyUserPermissions();

</script>