我可以使用 CEWP 重置 core.js 文件中声明的变量吗?

发布于 2024-10-17 13:47:06 字数 241 浏览 4 评论 0原文

我可以在 Core.Js 文件中声明变量并在任何 SharePoint 页面上分配值吗?就像将 CEWP 放在页面上并动态设置变量(驻留在 Core.js 文件中)值一样?

我尝试将一个变量放入 Core.js 文件中,并在 CEWP 中将值重置为 x,但我没有在 Core.js 文件内的任何函数中获取 x 值。让我知道这是否可能发生,如果是,那么如何发生?

谢谢,

阿什什·乔塔利亚

Can I declare variable in Core.Js file and assign value on any SharePoint page. Like putting CEWP on page and setting variable(residing in Core.js file) value dynamially?

I tried putting one variable in Core.js file, and in CEWP I reset value to x, but I am not getting x value in any function inside Core.js file. Let me know if this could happen, if yes than how?

Thanks,

Ashish Chotalia

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

堇色安年 2024-10-24 13:47:06

我的理解是,如果你修改 core.js,你就处于不受支持的状态,所以我不建议你这样做。

http ://blogs.msdn.com/b/sowmyancs/archive/2008/04/02/customization-of-core-js-file-in-sharepoint.aspx

您能否解释一下您正在尝试做什么以及可能有更好的方法。

更新

你知道AddDocLibMenuItems已经有一个钩子,允许它被覆盖

function AddDocLibMenuItems(m, ctx)
{
    if (typeof(Custom_AddDocLibMenuItems) !="undefined")
    {
        if (Custom_AddDocLibMenuItems(m, ctx))
            return;
    }

如果你定义了一个函数Custom_AddDocLibMenuItems,你应该无需自定义 core.js 即可工作

My understanding is that if you modify core.js, you are in an unsupported state, so i cannot recommend you do that.

http://blogs.msdn.com/b/sowmyancs/archive/2008/04/02/customization-of-core-js-file-in-sharepoint.aspx

Could you explain what you are trying to do and there is probably a better way.

UPDATE

Do you know that AddDocLibMenuItems already has a hook in it, to allow it to be overridden

function AddDocLibMenuItems(m, ctx)
{
    if (typeof(Custom_AddDocLibMenuItems) !="undefined")
    {
        if (Custom_AddDocLibMenuItems(m, ctx))
            return;
    }

If you defined a function Custom_AddDocLibMenuItems, you should be able to work without customising core.js

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文