gpt4 book ai didi

jquery - js->链接追加数据而不是更新

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

我使用 CakePHP 版本 2.4.7

我像这样使用 Js 助手

$this->Js->link('+ Add file', array('action' => 'add_file'), array('update' => '#files'))

问题是我想将 #files 内容附加到返回的数据而不是替换。

如果有任何解决方法,请告诉我。

最佳答案

它适用于 cake2.2.9。代码:

echo $this->Form->button('+ Add file', array('id'=>'add_file','type'=>'button','class'=>'buttonStyle'));
$callback_code = 'var c_html = $("#click_update").html();$("#content_update").append(c_html);';
$request_code = $this->Js->request(
array('action' => 'a', 'param'),
array('async' => false, 'update' => '#click_update','complete' =>$callback_code)
);
$this->Js->get('#add_file')->event('click',$request_code);

----------

希望对你有用!

关于jquery - js->链接追加数据而不是更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23907597/

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