gpt4 book ai didi

php - CakePHP 按钮或提交,以及 jquery ajax

转载 作者:行者123 更新时间:2023-12-01 03:52:14 26 4
gpt4 key购买 nike

<?php
echo $this->Form->button('A Button');
echo $this->Form->button('Another Button', array('type'=>'button'));
echo $this->Form->button('Reset the Form', array('type'=>'reset'));
echo $this->Form->button('Submit Form', array('type'=>'submit'));
?>

我应该使用其中哪个?

我将单击一个按钮,jquery ajax 代码将被执行。

整个页面不会重新加载/刷新。

仅重新加载该分区的一部分,并显示从数据库获取的结果。

我添加了一个部门,用于投票。

有一个问题和四个答案。

可以选择一个单选按钮并单击该按钮,然后数据库的结果将显示在该分区中。

如何使用 jQuery ajax 做到这一点?

jQuery ajax 格式就是这样 =>

$.ajax({
type: "POST",
url: "some.php",
data: "name=John&location=Boston",
success: function(msg){
alert( "Data Saved: " + msg );
}
});

那么我如何调用具有这种格式的 Controller 的操作?

提前致谢。

最佳答案

如果您不想重新加载页面,请选择以下其中一项:

echo $this->Form->button('A Button');
echo $this->Form->button('Another Button', array('type'=>'button'));

关于php - CakePHP 按钮或提交,以及 jquery ajax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7244552/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com