我有自定义列表,默认为“标题”列。
如何使用JS将其显示名称更改为“Project”?
SPServices 库的方法 UpdateList 带有 updateFields 参数。
在官方文档中它只是 sets up a default value for field。
如何更改显示名称?
答案 0 :(得分:0)
如果有人有兴趣,我找到了解决方案
var ctx = SP.ClientContext.get_current();
var web = ctx.get_web();
var list = web.get_lists().getByTitle('Your List Name');
var field = list.get_fields().getByInternalNameOrTitle('Title');
field.set_title('new title');
field.update();
ctx.executeQueryAsync(function() { alert('success'); });