new »

Daily Archive ... 2012, 8月, 10th, 金曜日

JavaScript 文字列を繰り返す

Posted by dab 2012年8月10日 金曜日 16:58:45 < JavaScript, コンピュータ >

質問のjQueryとは関係ないので、直接投稿は避けました。

Stringを拡張するのも自己矛盾する気がする(昔はスーパークラス自身を拡張するのを嫌っていた)のですが、、、
結構楽だったりするので。。。

String.prototype.times=function(n){
  var s=this;
  var result='';
  while(n--){result+=s;}
  return result;
};

alert( 'hello'.times(3) ); //hellohellohello
$(xxx).prepend('<div></div>'.times(3));

元ネタ:jQueryのprependで回数指定。
http://okwave.jp/qa/q7636673.html

日当り良好

Posted by dab 1:37:30 < 日記 >

半袖よりも長袖で日光を遮った方が涼しいのでした。

« old

Daily Archive

2012, 8月, 金曜日, 10th