我可以使用 CEWP 重置 core.js 文件中声明的变量吗?
我可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅 自定义或覆盖 Sharepoint 中的 core.js 文件函数 @ YoursAndMyIdeas
Refer to Customize or Override core.js file functions in Sharepoint @ YoursAndMyIdeas
我的理解是,如果你修改 core.js,你就处于不受支持的状态,所以我不建议你这样做。
http ://blogs.msdn.com/b/sowmyancs/archive/2008/04/02/customization-of-core-js-file-in-sharepoint.aspx
您能否解释一下您正在尝试做什么以及可能有更好的方法。
更新
你知道
AddDocLibMenuItems
已经有一个钩子,允许它被覆盖如果你定义了一个函数
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 overriddenIf you defined a function
Custom_AddDocLibMenuItems
, you should be able to work without customising core.js