假设我在 IndexController 中有一个名为 test() 的公共函数:
public function test(){
//some code here
}
在 index.phtml 视图文件中,我想使用 JQUERY AJAX 调用 test() 函数,但对此一无所知。
代码:
<a href="javascript:void(0)" onclick="callTestFunction()">Click me to call test() function()</a>
<script>
callTestFunction = function(){
$.ajax({
type: "POST",
Url: ***//WHAT SHOULD BE HERE***
Success: function(result){
alert('Success');
}
});
}
</script>