かんたん作成.com【HTML,CSS,JavaScript,CGI,PHP】
|
|
|
文字コード変換(escape, unescape)
<html>
<head>
<title>文字コード変換</title>
<script language="JavaScript">
<!--
function change1() { // 文字コードに変換
document.form1.text2.value = escape(document.form1.text1.value);
}
function change2() { // 文字に変換
document.form2.text2.value = unescape(document.form2.text1.value);
}
//-->
</script>
</head>
<body>
<form action="" method="" name="form1">
文字コードに変換<br>
<input type="text" name="text1" size="50">
<input type="button" value="変換" onClick="change1()">
<input type="text" name="text2" size="50">
</form>
<br>
<form action="" method="" name="form2">
文字に変換<br>
<input type="text" name="text1" size="50">
<input type="button" value="変換" onClick="change2()">
<input type="text" name="text2" size="50">
</form>
</body>
</html>
実行する
|
当サイトはリンクフリーです。
<a href="http://www.kantansakusei.com/">かんたん作成.com【HTML,CSS,JavaScript,CGI,PHP】</a>
|