我需要能够通过Umbraco Document属性将Javascript插入到网页中。我该怎么做?
答案 0 :(得分:2)
使用“文本框多个”类型向文档类型添加字段。给它一个合适的别名,比如HeaderCode。
在模板中添加对HeaderCode的引用。
<html>
<head>
...
<script type="text/javascript">
<umbraco:Item runat="server" field="HeaderCode"/>
</script>
</head>
...
</html>
您现在可以在HeaderCode中输入您的脚本,例如
$(function() {
// Stuff to do on page ready.
});