当字段的值更改或当表单加载时,“提醒框”任务显示一条提醒消息。它用于用户输入时字段动作或加载时表单动作脚本。
alert <value>;
其中,
当用户输入日期时,在日期字段中提醒一年中的星期。
form FormA {
Sale Date ( type = date on user input { alert(input.Sale_Date.getWeekOfYear() + "th week of the year"); } )
}