1
我在yii2中彈出窗體時遇到問題。 「更新」不起作用。窗體顯示,但在檢查工具中出現「Uncaught RangeError:最大調用堆棧大小超出。」。 創建的動作使用相同的代碼,它完美地工作。未捕獲的RangeError:超出最大調用堆棧大小yii2彈出窗體
我不知道發生了什麼事。
$(function(){
$(document).on('click','#modalButton',function(){
var id = $(this).attr('value');
$.get('update',{'id':id},function(data){
$('#modalUpdate').modal('show')
.find('#modalContentUpdate')
.html(data);
});
});
我爲我的英語很抱歉。
使用.post的$代替$不用彷徨..次再試試.. 。 希望這可以幫助 –