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

时间:2012-11-09 10:33:06

标签: php javascript jquery 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内容。但它不是,而是我看到了错误

  

您提交的URI不允许使用字符。

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

2 个答案:

答案 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中的