タグ : javascript
javascript で PHP の number_format() に相等する正規表現
2015年12月16日 Ajax+JS
PHP の number_format() 数値(整数)をカンマ区切りで表示したい場合, PHP だと number_format()という関数がある。 echo number_format(1234567); // 結 …
Google CGI API for Japanese Input を jQuery で試してみた
2013年6月25日 Ajax+JS
Google CGI API for Japanese Input を jQuery で試してみた Japanese Input(http://www.google.co.jp/ime/cgiapi.html)というGo …
preventDefaultを使用するとFormに入力できない
2013年6月24日 Ajax+JS
preventDefaultを使用するとFormに入力できない 前回の記事(touchmoveが効かない)でドラッグやフリックを実現するためにtouchstartイベントにpreventDefaultをすると上手くいく事 …
touchmoveが効かない
2013年6月19日 Ajax+JS
touchmoveが効かない androidのタブレットでドラッグ的な事を実装しようと思い,touchstart, touchmove, touchend などのイベントをテストしていた所,ハマってしまったのでメモ。 上 …