Visualforce Page超链接

  1. Salesforce开发者文档:https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_quick_start_query_params_setting.htm
  2. 代码

    <apex:page sidebar="false" standardController="Contact">
    <apex:outputLink value="http://google.com/search?q={!contact.name}">
    Search Google
    </apex:outputLink>
    </apex:page>

  3. 效果(Visualforce Page 类似于前端页面,这段代码实现:显示超链接,点击跳转到Google主页面,类似于html的a标签,standardController="Contact"表示系统的控制器,q={!contact.name}表示当前链接在Contacts下显示,也可以换成在Account标签卡下显示,同时需要把控制器改为Account)
  4. Visualforce Page超链接
上一篇:在Visualforce page中用自带的控件实现Ajax回调后台方法(并且可以用js去动态给parameters赋值)


下一篇:Salesforce随笔: 将Visualforce Page渲染为PDF文件(Render a Visualforce Page as a PDF File)