gpt4 book ai didi

php - Jquery:创建多个实体

转载 作者:可可西里 更新时间:2023-10-31 23:43:58 24 4
gpt4 key购买 nike

我正在为一个 iPhone 网站创建一个即时贴提醒应用程序。目标是让用户创建任意数量的“便签”——所有数据都将保存在本地存储中。

我这里有一个即时贴的工作原型(prototype):

    $( function() {
$('#sticky-edit').bind( 'taphold', function( e ) {
alert( 'You tapped and held!' );
var thetext = localStorage.getItem("sticky");
$(".sticky-text").html('<input id="sticky-input" type="text" value="'+thetext+'" />');
} );

$('#sticky-submit').bind( 'taphold', function( e ) {
var data = $("#sticky-input").val();
alert('Notes Saved!');
localStorage.setItem("sticky", data);
$(".sticky-text").text(localStorage.getItem("sticky")).show();
} );

} );

$(".sticky-text").text(localStorage.getItem("sticky")).show();
#stickies li {
position: relative;
width: 200px;
min-height: 100px;
margin: 25px auto;
padding: 15px;
background: #f1f3a2;
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(247,247,210,1)), to(rgba(240,242,155,1)));
background: -moz-linear-gradient(top, rgba(247,247,210,1), rgba(240,242,155,1));
-webkit-box-shadow: 0 2px 12px rgba(0,0,0,.5);
-moz-box-shadow: 0 2px 12px (rgba(0,0,0.5));
box-shadow: 0 1px 2px #000;
-webkit-transform: rotate(-.5deg);
-moz-transform: rotate(-.5deg);
-o-transform: rotate(-.5deg);
text-align: center;
color: #000;
text-shadow: white 1px 1px 0px;
list-style: none;
}

#stickies li:nth-child(even) {
-webkit-transform: rotate(.5deg);
-moz-transform: rotate(.5deg);
-o-transform: rotate(.5deg);
}

#stickies li::before {
content: ' ';
display: block;
position: absolute;
left: 65px;
top: -15px;
width: 75px;
height: 25px;
z-index: 2;
background-color: rgba(243,245,228,0.5);
border: 2px solid rgba(255,255,255,0.5);
-webkit-box-shadow: 0 0 5px #888;
-moz-box-shadow: 0 0 5px #888;
box-shadow: 2px 2px 2px #000;
-webkit-transform: rotate(-3deg);
-moz-transform: rotate(-3deg);
-o-transform: rotate(-3deg);
}

#stickies li:nth-child(even)::before {
-webkit-transform: rotate(3deg);
-moz-transform: rotate(3deg);
-o-transform: rotate(3deg);
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul id="stickies">
<li>
<p class="sticky-text">Hello</p>
<a id="sticky-edit">Edit</a>
<a id="sticky-submit">Submit</a>
</li>
</ul>

现在我需要做的就是弄清楚如何允许用户创建任意数量的即时贴,每个即时贴都有自己的本地存储区域。使用 jquery 是否可行,或者使用 php 来完成此操作会更容易吗?

最佳答案

我曾在 Flash 中做过一次。本地存储区是什么意思?你可以让用户想做多少就做多少:http://jsfiddle.net/NegYd/14/使用 javascript/jquery。关键是:

function appendSticky(){
var e= document.getElementById("submittext").value;
$("#stickies").append("<li>"+e+"</li>");
$.post("store.php", { text: e} );//you'll have to submit user information
}

和 html:

<input id="submittext" type='text'/>
<input type='submit' value='add note' onClick="javascript:appendSticky();"/>

然后在您的 store.php 中将便签存储到 MySQL 数据库中。 $sql="INSERT.."

我建议使用 float:left; 和随机 margin-left 值来组织便签,而不是使用列表来获得最终的便利贴感觉。或者更好的是,让便利贴可以拖放。

关于php - Jquery:创建多个实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4817902/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com