在這裏,我創建了一個得到CSS的顏色和用CSS彩色背景創建元素的jQuery函數:Edit my jsFiddle如何使用php編輯jquery後保存文件?
HTML
<div ID="wrapper">
<div ID="addColor">
<input type="text" ID="hex">
<div ID="color">Your color</div>
<button ID="add">Add color</button>
<div CLASS="clear"></div> <!-- Clear float -->
</div>
<div ID="wrapGallery">
<h1>My Color Gallery</h1>
<ul ID="gallery"></ul>
</div>
</div>
JS/jQuery的
$(function() {
//float left with some margin
$('#addColor')
.children().not('#add, .clear').css({
'float':'left',
'margin-right': '5px'
});
//Showing color on keyup
$('#hex').keyup(function() {
var hexCode = $(this).val();
$('#color').css('background-color', hexCode);
if (hexCode !== '') {
$('#color').text('');
}else{
$('#color').text('Your color');
}
});
//Adding colors
$gallery = $('#gallery');
$('#add').click(function() {
var storedHex = $('#hex').val();
//check if empty
if (storedHex == '') {
alert('Enter something');
}
else {
//adding li
$("<li>").css('background-color', storedHex)
.hover(
function() {
$(this).text(storedHex);
},
function() {
$(this).text('');
})
.appendTo($gallery);
}
});
});
唯一我需要做的是將創建的元素永久保存在文件中,這樣我就可以隨時訪問。我不知道該怎麼做。
保存它們永久什麼文件? – 2012-07-23 03:44:48
@DavidStetler我嘗試使用窗體傳遞值並回顯該變量,但是您知道如何將該新變量永久保存在同一個文件或任何其他方式? – PhoxKiD 2012-07-23 05:23:49