我想用窗口小部件输出值“<data:content />”替换YOUR_LABEL_HERE,我想将窗口小部件输出传递给我的javascript
这是我的代码:
<b:section class='section' id='my-html-sec-test'>
<b:widget id='HTML555' locked='true' title='MY LABEL' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'> Label </b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
</b:if>
<div class='widget-content'>
<data:content/>
<script src="/feeds/posts/default/-/YOUR_LABEL_HERE?published&alt=json-in-script&callback=labelthumbs" type='text/javascript'> </script>
</div>
<b:include name='quickedit'/>
</b:includable>
</b:widget>
</b:section>
你需要在expr
之前使用Blogger src
,以便将小部件数据内容作为字符串传递
<b:section class='section' id='my-html-sec-test'>
<b:widget id='HTML555' locked='true' title='MY LABEL' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'> Label </b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
</b:if>
<div class='widget-content'>
<script expr:src='"/feeds/posts/default/-/" + data:content + "?published&alt=json-in-script&callback=labelthumbs"' type='text/javascript'></script>
</div>
<b:include name='quickedit'/>
</b:includable>
</b:widget>
</b:section>