0

我使用 sharepoint 客户端 api 将项目保存到列表。然后我需要调用javascript函数来更新我的html。但是我不能!页面被刷新而不是函数调用!

         clientContext.ExecuteQueryAsync(
                    (sender, args) =>
                    {
                        System.Windows.Deployment.Current.Dispatcher.BeginInvoke(
                        delegate()
                        {
                            StopLoading();
                            HtmlPage.Window.Invoke("UpdateHtmlDetails", id, title, description);
                        });
                    }, SaveRequestFailed);

id = int, title= string, description= string 为什么页面刷新而不是调用javascript?

一些methods.js中的函数并注册:

   <SharePoint:ScriptLink name="/_layouts/tv2/js/methods.js" runat="server" Localizable="false"/>

文件在页面上呈现为 100%。

4

1 回答 1

0

发现问题。启用退出浏览器已打开!

于 2011-05-11T22:20:33.120 回答