天天看點

前端開發手記

http://www.runoob.com/angularjs/angularjs-select.html

afbd1acca248d14e0efd9c7d59da45df

           
git           
http://www.jianshu.com/p/c70ca3a02087

E:\wamp\www\code\edu\manage.fz.qingguo.com\protected\views\ctStudent

微信上傳視訊接口
http://blog.5ibc.net/p/20464.html

nodejs實時聊天
http://www.cnblogs.com/Wayou/p/hichat_built_with_nodejs_socket.html

二級關聯
http://wwwzhouhui.iteye.com/blog/853514

cordova移動開發
http://www.cnblogs.com/zhoujg/archive/2015/05/28/4534932.html

ionic調取手機攝像頭
http://blog.csdn.net/yuxiaofan1245023886/article/details/52251410

http://blog.csdn.net/journey191/article/details/40744015調取攝像頭

上傳圖檔
http://www.jb51.net/html5/477046.html

http://ask.dcloud.net.cn/question/2089

es6
http://es6.ruanyifeng.com/#docs/intro
http://www.open-open.com/lib/view/open1454226995448.html
http://blog.csdn.net/xiaozhuxmen/article/details/51597923

js筆記
http://ghmagical.com/article/page/id/NPX077QhOfd7
weixinjs
http://blog.csdn.net/qq_31383345/article/details/53127804

移動端
http://www.cnblogs.com/PeunZhang/p/3553020.html
http://www.cnblogs.com/PeunZhang/p/4517864.html

頁面下載下傳為word或者其他格式,可自動調控
http://www.thinksaas.cn/topics/0/589/589241.html

http://www.jikexueyuan.com/zhiye/course/34.html
微信小程式
http://xue.jikexueyuan.com/zhiye/course/34/ke/37/lesson/1230/page/1795.html
https://mp.weixin.qq.com/debug/wxadoc/dev/api/media-picture.html?t=1477579747438#wxgetimageinfoobject
http://www.myexception.cn/image/1782021.html
https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html?t=20161122

清緩存
http://blog.csdn.net/u013630488/article/details/49584235
http://blog.csdn.net/zhbitxhd/article/details/9944715
http://www.haorooms.com/post/js_llq_hc

項目開發流程
https://www.processon.com/view/link/58dc7178e4b02c6ef403259b

wx09b817f87b40c205

ionic
http://www.ionic.wang/js_doc-index-id-29.html

alloyfinger
https://github.com/AlloyTeam/AlloyFinger/blob/master/vue/alloy_finger.vue.js


react
http://www.jikexueyuan.com/course/reactjs/
http://www.jianshu.com/p/42e11515c10f
https://tianxiangbing.github.io/react-cn//docs/getting-started.html

面向對象
http://www.ruanyifeng.com/blog/2010/05/object-oriented_javascript_inheritance.html


hightarts
http://www.oschina.net/code/snippet_1242747_26754

react native
http://wiki.jikexueyuan.com/project/react-native/DevelopmentSetupAndroid.html

vue
http://www.cnblogs.com/ychl/p/6110454.html
http://blog.csdn.net/fungleo/article/details/53171052

php
http://www.php.cn/code/25.html

angular2.0
https://zhuanlan.zhihu.com/p/25198059?utm_source=qq&utm_medium=social

 <!--密碼-->
    <view class="phoneInfo">
        <label class = "phonenumber left">
            <image src="../images/pasw.png"></image>
        </label>
        <input class="phonenum" value="{{password}}" bindblur="inputpsw" placeholder="輸入密碼"/>
    </view>
    <!--确認密碼-->
    <view class="phoneInfo">
        <label class = "phonenumber left">
            <image src="../images/pasw.png"></image>
        </label>
        <input class="phonenum" value="{{paswd}}" bindblur="inputpaswdr" placeholder="确認密碼"/>
    </view>


 //輸入密碼
  inputpsw:function(e){
      var that = this;
      var password = e.detail.value;
      that.setData({
        password:password
      });
  },
  //确認密碼
  inputpaswdr:function(e){
      var that = this;
      var paswd = e.detail.value;
      that.setData({
        paswd:paswd
      });
  },           

繼續閱讀