gpt4 book ai didi

jquery spservices 更新列表项

转载 作者:行者123 更新时间:2023-12-01 03:14:49 26 4
gpt4 key购买 nike

我正在尝试使用 jquery spservices 更新列表项。一切正常,但是当我尝试将 href 添加到 Richtextfield 时,它不起作用。它只更新纯文本而不更新 href。下面是代码,这只是一个测试,所以这些网址用于测试。

function fn_UpdateListItem(){
$().SPServices({
operation: 'UpdateListItems',
listName: 'Bedrijven',
ID: 1,
valuepairs: [["Software", "<a href='http://www.google.nl'>its a test.</a>"]],
completefunc: function(xData, Status) {
alert('test complete');
}
});
}

如果我将值对更改为

valuepairs: [[\"Software\", \"test\"]],

它可以将测试放入富文本字段中。但使用 href 则不起作用。有人知道如何修复吗?在此致谢

最佳答案

我在 Sharepoint 2010 中遇到了同样的问题,在本例中var dfNotes = CKEDITOR.instances.notes.getData(); 对我不起作用,我发现了这个:

https://msdn.microsoft.com/en-us/library/office/ee658527(v=office.14).aspx

var value = SP.Utilities.HttpUtility.htmlEncode(html); 
Edit

Tested on Sharepoint 2016 SharePoint On-Premises, It works too, so i it should work for SharePoint Online aswell !!

这对我来说是这样的:

function AddListItem(html, list) { 
var value = SP.Utilities.HttpUtility.htmlEncode(html);
$().SPServices({
operation: "UpdateListItems",
async: false,
batchCmd: "New",
listName: list,
valuepairs: [["Title", 'Title'], ["Content", value]],
completefunc: function(xData, Status) {
console.log(Status);
}
});

}

关于jquery spservices 更新列表项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17834048/

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