欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

visualforce页面js方法里面调用controller里的方法

程序员文章站 2024-02-20 15:37:04
...

visualforce页面调用controller里的方法

如controller里面定义个方法testMethod(),则在visualforce页面可以通过如下方式直接调用:

<apex:actionFunction action="{!testMethod}" name="testMethod" rerender="fm"></apex:actionFunction>
<apex:commandButton value="测试" rerender="fm"
                    oncomplete="if(confirm('是否调用testMethod方法'))
                    {
                         testMethod(); 
                    }  
                    "/>
相关标签: visualforce page