当前位置: 首页 > 网络学院 > 客户端脚本教程 > APPML > script
The AppML <script> element provides a method for adding standard HTML scripts to the application.
AppML<script>元素提供了添加一个方式:将标准的HTML脚本程序添加到应用程序中。
Any legal script code can go inside the <script> element.
所有合法的脚本代码都必须写进<script>元素中。
Note: The script can be called from the <onload> sub element of <htmlform> OR be called from a field in the HTML form or list.
注意:脚本程序可以从<htmlform>的二级元素<onload>中请求,或者,从HTML表单或列表中的一个字段中请求。
This example will execute the JavaScript function message() when the AppML HTML form loads:
当加载AppML HTML表单时,这个案例将执行JavaScript 函数message():
<?xml version="1.0" ?> <appml> <database> <htmlform> <script type="text/javascript"> </htmlform> </appml> |