当前位置: 首页 > 网络学院 > 客户端脚本教程 > APPML > onload
The <onload> element defines a script to be executed when the AppML application loads in a browser.
<onload>元素定义了在下载AppML应用程序时所执行的脚本程序。
Used in conjunction with the <script> form element.
可以与<script>表单元素一起使用。
This example will execute the Javascript "message()" when the AppML page loads.
当加载AppML页面时,这个案例将执行JS "message()"脚本程序。
<?xml version="1.0" ?> <appml> <database> <htmlform> <script type="text/javascript"> </htmlform> </appml> |