如您所见,我对 Javascript 非常(!)新手 - 非常(!)。 已经尝试过各种带有函数等的例子,但我根本无法理解它(还)。
做其他编程,因此我得到了函数的作用,不幸的是还没有在哪里插入和调用它们然后获取变量。
我想从 {{getGroupTranslation @root.$localizedResource name}} 因此尝试设置一个变量,我可以稍后再拿起。 我已经插入了。 var SupraLevel = {{名称}} 并想在这里拿起它:{{name}}
</thead>
<tbody>
{{#each totalLevel.groupLevel}}
<tr style="font-weight:bold;">
<td colspan="100%">{{getGroupTranslation @root.$localizedResource name}}</td>
</tr>
<script> var SupraLevel = {{name}} </script>
{{#each positionLevel}}
<tr>
<td class="accName" id={{name}},{{ SupraLevel }} >{{name}}</td>
{{#each posData}}
<td>{{formatNumber MVStart @root.language "decimal" 2 2}}</td>
我试着在这里写一个函数:
</head>
function myFunction(inputTag){
SupraLevel = inputTag
}
<body>
但最终在这个例子中没有意义
看过:
文字