我有一个上下文菜单,其中充满了异步服务器请求。 在加载时,我正在像这样预填充此菜单。
$(document).contextmenu("setEntry", "test", "(loading...)");
但是我已经发现setEntry
已过时。
所以我想问一下我如何使用推荐的功能setTitle
?
如果我这样使用它:
$(document).contextmenu("setTitle", "(loading...)");
然后我得到一个错误。 有人有经验吗?
答案 0 :(得分:0)
正确的语法是
$(document).contextmenu("setTitle", <cmd>, <title>);
以您的情况
$(document).contextmenu("setTitle", "test", "(loading...)");
有关详细信息,请参见API docs。