我希望 showAll 按钮单击应该打开另一个页面,并在那里执行 showAll 函数,以便将结果打印在新页面上。其次,我如何将 console.log 语句修改为其他语句,以便在此打印结果(新)页面而不是控制台。
HTML
<ul class="nav">
<li id="add" ><p>Add</p></li>
<li id="show"><p>Show</p></li>
<li id="showAll"><p>Show All</p></li>
</ul>
JS文件
$(document).ready(function(){
function showAll()
{
var objectStore = db.transaction(storeName).objectStore(storeName);
objectStore.openCursor().onsuccess = function(event)
{
var cursor = event.target.result;
if (cursor)
{
console.log(" Post: " + cursor.value.post);
cursor.continue();
}
else
{
alert("No more entries!");
}
};
}
$("#showAll").click(function()
{
console.log("eventlistner called for showAll...");
showAll();
});
});