js 弹窗出现乱码了
if($DB->query($sql))
{
echo "<script>alert('提交成功,感谢你的支持');window.location.href='solictopic.php'</script>";
}
$DB->close();
当我的程序运行到这里是 弹出提示框 是个乱码? 是不是要设置utf编码啊?
------解决方案--------------------js 弹出的窗口文字跟你的页面编码有关系.
在页面添加
<?php header('Content-Type:text/html;charset=gbk'); ?>