
js&html5
文章平均质量分 85
老姚1987
热爱生活,热爱技术,关注人工智能,机器学习,大数字,设计的老猿
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
jquery学习(一)
一.操作dom属性 jquery 能动态移除,添加页面上的dom元素,并修改其属性。 遍历中的每个连接,为他们添加属性,等同 二。插入元素 元素后面插入 等同 同理在 前面插入可用方法 befor 和insertBefor prependTo 能能在元素中嵌入子元素。原创 2017-01-15 15:46:11 · 330 阅读 · 1 评论 -
jqery学习(二)
一。加载html a.html 加载的内容的插入 #dictionary div 中 二.加载json 三。注入脚本 四.向服务器发送数据原创 2017-01-15 15:47:34 · 291 阅读 · 1 评论 -
kendoComboBox 下拉搜索自动提示
原文地址:http://write.blog.youkuaiyun.com/postedit var confirmHospitalSel = $("#confirmHospitalSel").kendoComboBox({ // autoBind: false, cascadeFrom: "citySel", filter: "contains", // suggest: true, //pl...原创 2017-01-15 15:49:33 · 3773 阅读 · 0 评论 -
H5中localStorage存储信息
存储 localStorage.setItem("healthAccount",userInfo.healthAccount); function saveUserInfo(userInfo){ if(window.localStorage){ localStorage.setItem("healthAccount",userInfo.healthAccount); localStora...原创 2017-01-15 15:51:24 · 750 阅读 · 0 评论 -
h5根据坐标解析地址信息
原文地址:http://write.blog.youkuaiyun.com/postedit function initAddress(){ if (navigator.geolocation){ navigator.geolocation.getCurrentPosition( func...原创 2017-01-15 15:53:17 · 987 阅读 · 0 评论 -
HTML5 与百度地图开发
原文地址:http://write.blog.youkuaiyun.com/postedit 1.navigator.geolocation HTML5的方式获取GPS坐标 2.将坐标信息转换为百度地图的坐标系 3.将转换得到的坐标展示在地图上 引入js库 <script src= "${common_root}/resource/mobile/js/jquery-1.8.3.mi...原创 2017-01-15 15:56:57 · 775 阅读 · 0 评论 -
html5 拍照
原文地址:http://write.blog.youkuaiyun.com/postedit <p style=" width: 100%"> <a href= "javascript:selectPicture()" ><img style=" width: 4em;height : 4em" src="/resource/mobile/images/photo...原创 2017-01-15 15:59:11 · 443 阅读 · 0 评论