2009年1月27日火曜日
2009年1月26日月曜日
2009年1月22日木曜日
2009年1月19日月曜日
actionscript3:テキストフィールド使用
var myTextBox:TextField = new TextField();
var myText:String = "Hello World";
addChild(myTextBox);
myTextBox.text = myText;
http://livedocs.adobe.com/flash/9.0_jp/main/wwhelp/wwhimpl/js/html/wwhelp.htm?href=00000036.html#wp718637
var myText:String = "Hello World";
addChild(myTextBox);
myTextBox.text = myText;
http://livedocs.adobe.com/flash/9.0_jp/main/wwhelp/wwhimpl/js/html/wwhelp.htm?href=00000036.html#wp718637
2009年1月16日金曜日
2009年1月14日水曜日
2009年1月7日水曜日
Javascript:正規表現関係メモ
マッチ
var vname = "id";
re = new RegExp("^" + vname + "[0-9]+$");
if("id12".match(re)){
alert('あってまっせ');
}
置換
var newWord = "id12".replace(vname,"code");
alert(newWord);
var vname = "id";
re = new RegExp("^" + vname + "[0-9]+$");
if("id12".match(re)){
alert('あってまっせ');
}
置換
var newWord = "id12".replace(vname,"code");
alert(newWord);
2009年1月6日火曜日
jQuery:子要素に、条件式に合致する要素があるかどうか調べる。
<form id="sform">
<input name="sort" />
</form>
if($('#sform').children().is("input[name='sort']")){
alert('ありまんがな');
}
<input name="sort" />
</form>
if($('#sform').children().is("input[name='sort']")){
alert('ありまんがな');
}
createElementしたものもjQueryオブジェクトにしちゃう方法
var ele = $(document.createElement('div'));
http://devml.blogspot.com/2008/11/createelementjquery.html
http://devml.blogspot.com/2008/11/createelementjquery.html
登録:
投稿 (Atom)