我想在控制台上显示内部标识为tabname的标签。
例如
console.log(<%=getCurrentAttribute('tab', 'tabname');%>);
我该如何实现?
答案 0 :(得分:0)
实际上,如果没有一些设置,你就无法可靠地做到这一点:
在您的模板中,您可以拥有:
<script>
var currentCategory = '<%=getCurrentAttribute('sitecategory', 'itemid')%>';
console.log(currentCategory);
</script>
但是如果您在选项卡上而不是在子类别的某个级别上,那么这只会获得选项卡名称。
我偶尔会创建一个空的web坐标,然后在标签级别完成标记替换。
e.g。
<script>
var currentTab = '<TOP_LEVEL>';
console.log(currentTab);
</script>