gpt4 book ai didi

javascript - jquery 便签插件

转载 作者:行者123 更新时间:2023-11-29 22:24:22 25 4
gpt4 key购买 nike

我使用 jQuery 便签插件 http://www.jquery-sticky-notes.com/我使用 asp.net web 服务和 ajax 将它与数据库连接以创建笔记并编辑和删除,然后我使用 json 数组从数据库中获取笔记。问题是:我不能用数据库中的注释填充这个插件它使用选项数组

jQuery(document).ready(function() {
var options = {
notes:[{"id":1,
"text":"Test Internet Explorer",
"pos_x": 50,
"pos_y": 50,
"width": 200,
"height": 200,
}]
,resizable: true
,controls: true
,editCallback: edited
,createCallback: created
,deleteCallback: deleted
,moveCallback: moved
,resizeCallback: resized

};
jQuery("#notes").stickyNotes(options);
});

如果一个音符现在包含音符属性:-我如何使用这个选项数组用数据库中的注释填充这个插件

最佳答案

尝试下面的代码并根据代码中的注释填充 Note 数组,从第 3 行开始(您需要放置一个 For 循环或其他东西)。然后将数组分配给 option.notes,如倒数第二行所示。

jQuery(document).ready(function() {
var note= new Object();
///////Populate the Notes array here
note=[{"id":1,
"text":"Sticky Text1",
"pos_x": 20,
"pos_y": 50,
"width": 200,
"height": 200,
},{"id":1,
"text":"Sticky Text 2",
"pos_x": 50,
"pos_y": 50,
"width": 200,
"height": 200,
}];
///////Populate the Notes array here

var options = {
notes:null
,resizable: true
,controls: true
,editCallback: edited
,createCallback: created
,deleteCallback: deleted
,moveCallback: moved
,resizeCallback: resized

};
options.notes=note;
jQuery("#notes").stickyNotes(options);

关于javascript - jquery 便签插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10497993/

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