使用数据库实现web留言板

 火狐和ie是不支持的

html5本地数据库(web sql Darabase)核心方法 openDatabase   transaction  executeSql小解:

1 openDatabase 能使用现有数据库或创建新数据库创建数据库对象。

2 transaction  能访问数据库

3 executeSql 执行SQl查询 (例如获取数据,将传进来的数据保存在数据库中)

<body onload="init();">
<table>
    <tr>
        <td>姓名td>
        <td><input type="text" id="name"/>td>
    tr>
    <tr>
        <td>留言td>
        <td><input type="text" id="memo"/>td>
    tr>
    <tr>
       <td> <input type="button" value="保存" onclick="saveData();"/>td>
    tr>
table>
<hr/>
<table id="datatable" border="1">

table>
<p id="msg">

p>

 

 

转载于:https://www.cnblogs.com/jin-000/p/6802667.html

你可能感兴趣的:(使用数据库实现web留言板)