我有一个名为CALENDAR的php应用程序。在加载页面上,日历为空。
我有方法在点击特定单元格后,输入html代码。
例如,其中一个方法看起来像这样(整个日历是<table>
):
function shift3()
{
$('td').dblclick(function() {
var clicked_cell = ($(this).attr('id'));
$("#"+clicked_cell).html('<div id="shift3">9:00 <br> 17:00</div>')
});
}
问题是如何保存文件(calendar.php),刷新页面后紫色方块不会消失?