我有一个打印按钮,单击它时必须触发以下JavaScript函数。

$('.print').click(function(){
    var htmlval=$('.pop_reciept').html();
    window.open('http://localhost/ccccccc/xxxxxxx/pdf/'+htmlval,'_blank');
});
htmlval包含带有pop_reciept类的元素的HTML,然后将其传递给pdf Controller :
public function pdf($val){
   echo $val;

   return false;

}

我想要显示HTML内容。但事实并非如此,相反,我看到了错误



请帮助或建议一种更好的方法。

最佳答案

在大多数服务器上,URL的大小限制为8kb,很大一部分html代码可以轻易超过它。
发送POST请求也可以解决字符不允许的问题。
您可以在这里找到解决方案:Window.open and pass parameters by post method

10-04 21:29