タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

JavaScriptと*に関するsonota88のブックマーク (1)

  • anobota

    JavaScript memo オレオレメモ。 // console.log() がめんどい function puts(){ console.log(arguments); } function strip(str){ return str.replace( /^[\s\t\n\r\n]+/, "" ).replace( /[\s\t\r\n]+$/, "" ); } function insertAsFirstChild(parent, child){ parent.insertBefore(child, parent.firstChild); } // 素直に jQuery とか使った方がいい気がしますが、 // ブックマークレットとかでちょっと使いたい場合に function xid(){ var elem, id; switch(arguments.length){ case 1

  • 1