您的位置:EcStart |BLOG >> 論壇 >> PHP 求助區 >> 查看帖子
字體: 小 中 大
seanlee074 發表於: 2008-5-08 14:41 來源: EcStart |BLOG
CODE:
<html> <body> <div> <?php echo(mb_convert_encoding($_GET['val'],"BIG5","UTF-8")); ?> </div> <button onclick="gogo()">test</button> <script> function gogo() { window.location="test247.php?val="+encodeURI("我踏月色而來許功蓋"); } </script> </body> </html>
最新回復
CODE:
<html><body>
<div>
<?php
echo(mb_convert_encoding($_GET['val'],"BIG5","UTF-8"));
?>
</div>
<button onclick="gogo()">test</button>
<script>
function gogo() {
window.location="test247.php?val="+encodeURI("我踏月色而來許功蓋");
}
</script>
</body>
</html>