码迷,mamicode.com
首页 > 其他好文 > 详细

使用phonegap进行本地存储

时间:2017-03-29 22:38:12      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:content   ora   highlight   amp   cal   html   cti   read   ova   

<!DOCTYPE html>
<html>

	<head>
		<meta charset="UTF-8">
		<title>Database Example</title>

		<script type="text/javascript" charset="UTF-8" src="cordova.js"></script>
		<script type="text/javascript" charset="UTF-8">
			document.addEventListener("deviceready", onDeviceReady, false);

			function onDeviceReady() {
			}
			
			function storeName(){
				var myName=document.getElementById("name").value;
				window.localStorage.setItem("name",myName);//存储
				var result=document.getElementById("result");
				result.innerHTML="Your name is"+window.localStorage.getItem("name");//取出存储值
				return false;
			}
			
		</script>
	</head>

	<body>
		<form>
			<p>What is your name?<br />
			<input type=‘text‘ id=‘name‘ onkeyup=‘storeName()‘></p>//键盘弹起
			<input type=‘text‘ id=‘name‘ onblur=‘storeName()‘></p>//焦点移到输入框外
		</form>
		<div id=‘result‘>show content</div>
	</body>

</html>

  

使用phonegap进行本地存储

标签:content   ora   highlight   amp   cal   html   cti   read   ova   

原文地址:http://www.cnblogs.com/ganchuanpu/p/6641882.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!