背負い投げとENTER_FRAME

Icon

なんちゃってWebクリエイターがFlashやらActionScriptやらを淡々と書く。ときとき柔道の話しもする。

SAPページの多言語対応

ワンソースで多言語対応しないと行けないので、
簡単な言語をストックする関数を考えた。

// 辞書関数
dictionary = function(word){

	this.result = '';
	array = {
		entryText1: 'my text 1',
		entryText2: 'my text 2',
	}

	if( array[word] == null ){
		this.result = '#No find.';
	}else{
		this.result = array[word];
	}

	return this.result
}

// 例
dictionary('entryText1'); // my text 1

// 登録されていない言葉はエラーメッセージを返す
dictionary('hoge');  // #No find.

// こんな感じで使う
var _html = '<div>'+dictionary('entryText2')+'</div>' // <div>my text 2</div>

このエントリーをはてなブックマークに追加  

Category: Javascript

Tagged:

Leave a Reply

中の人のプロフィール

柔道歴約20年だが諸理由で未だ初段。162cm、60kgくらいの軽量級。得意は背負い投げと巴投げ。2009年、左ヒザ前十字靭帯損傷。ただ今柔道復帰を企んでいる真っ最中。仕事では最近、ActionScriptを書いたり、WordPressをいじったりの日々が続いてる。@renowanにてつぶやいてる。

アーカイブ

Flicker

This movie requires Flash Player 9.0.0