0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Aterm(WR8165N)のSSIDに全角文字を使いたい

Last updated at Posted at 2014-08-12

課題

Aterm(WR8165N)のSSIDに使える半角英数、半角記号のみで、全角は使えない。

Blank_Skitch_Document.png

全角文字を使いたい

http://192.168.10.1/wlbasic.htm ページのバリデーションはJavaScriptで行っている。includeHalfWidth2 という関数が半角文字だけで構成されているかを判定する関数。もし、これがいつも true を返す関数だったらな〜。

function includeHalfWidth2(str)
{
	return true;
}

あと、Atermの管理画面の文字コードはEUC-JPだが、これがUTF-8だったらいいのに。Chromeで文字コードをUTF-8にしてもフォーム送信できるかな?

もしもJavaScriptの言語仕様で定義済みの関数を上書きできたりしないかぎり、このバリデーションは突破できない(あっ…

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?