Visualforce Page中的apex:param标签用法整理

<apex:param> 标签在从JavaScript向Apex controller传递参数时经常被使用。
但仅可以用在以下标签的内部。
  • <apex:actionFunction>
  • <apex:actionSupport>
  • <apex:commandLink>
  • <apex:outputLink>
  • <apex:outputText>
  • <flow:interview>

以下是Salesforce中使用apex:param标签的示例代码整理。

Use <apex:param> in <apex:actionFunction>

ApexParam.page

ApexParamController.cls

Use <apex:param> in <apex:actionSupport>

ApexParam.page

ApexParamController.cls

Use <apex:param> in <apex:commandLink>

ApexParam.page

ApexParamController.cls

Use <apex:param> in <apex:outputLink>

ApexParam.page

Use <apex:param> in <apex:outputText>

ApexParam.page

Use <apex:param> in <flow:interview>

ApexParam.page

ApexParamController.cls

想更多了解flow:interview请查看: Set Flow Variable Values from a Visualforce Page

Enjoy It!