我有一个打印按钮,当它被点击时,必须触发以下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内容。但它不是,而是我看到了错误
您提交的URI不允许使用字符。
请帮助或建议更好的方法。
答案 0 :(得分:2)
在大多数服务器上,网址的大小限制为8kb,大量的html代码很容易超过它。
发送POST请求反而解决了不允许的字符问题
您可以在此处找到解决方案:Window.open and pass parameters by post method
答案 1 :(得分:0)
将特殊字符添加到变量$config['permitted_uri_chars']
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_=+-';
你的config.php中的