当前位置: 首页 > 网络学院 > 客户端脚本教程 > APPML > Delete 属性
The delete attribute removes the "Delete" button (garbage can) from the HTML list.
作用:从HTML列表中删除“Delete [删除]”按钮(垃圾筒图形)。
Note: Only available in an editable HTML list.
注意:仅能在一个可编辑的HTML列表中使用。
The delete attribute disables the "Delete" button in the HTML input form.
删除属性取消了HTML输入表单中“Delete [删除]”按钮的使用。
Remove the "Delete" button from the HTML list:
删除HTML列表中的“Delete [删除]”按钮:
<?xml version="1.0" ?> <appml> <database> <htmllist edit="true" delete="false" /> </appml> |
View the output produced by the AppML HTML List Service
查看由AppML HTML 报告服务输出的结果
View the XML source file
查看XML 源文件
Disable the "Delete" button in the HTML form:
取消HTML表单中的“Delete [删除]”按钮:
<?xml version="1.0" ?> <appml> <database> <htmllist /> </appml> |
View the output produced by the AppML List and Form Service
查看由AppML HTML 报告服务输出的结果
View the XML source file
查看XML 源文件