php – 如何将JavaScript中的.html()值传递给CodeIgniter控制器?

我有一个打印按钮,当它被点击时,必须触发以下
JavaScript函数.

$('.print').click(function(){
    var htmlval=$('.pop_reciept').html();
    window.open('http://localhost/ccccccc/xxxxxxx/pdf/'+htmlval,'_blank');                                  
});

htmlval包含类pop_reciept的元素的HTML,然后我将它传递给pdf控制器:

public function pdf($val){
   echo $val;

   return false;

}

我想要显示HTML内容.但它不是,而是我看到错误

The URI you submitted has disallowed characters.

请帮助或建议更好的方法来做到这一点.

最佳答案 在大多数服务器上,url的大小限制为8kb,大量的html代码很容易超过它.

发送POST请求反而解决了不允许的字符问题.

你可以在这里找到解决方案:
Window.open and pass parameters by post method

点赞