繁体   English   中英

Blogspot模板:将小部件输出传递给javascript

[英]Blogspot Template: pass widget output to javascript

我想用小部件输出值“ <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 != &quot;&quot;'>
      </b:if>
      <div class='widget-content'>
        <data:content/>

            <script src="/feeds/posts/default/-/YOUR_LABEL_HERE?published&amp;alt=json-in-script&amp;callback=labelthumbs" type='text/javascript'> </script>

    </div>

      <b:include name='quickedit'/>
    </b:includable>
        </b:widget>
      </b:section>

您需要在src之前使用Blogger expr才能将小部件数据内容作为字符串传递

<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 != &quot;&quot;'>
      </b:if>
      <div class='widget-content'>
        <script expr:src='"/feeds/posts/default/-/" + data:content + "?published&amp;alt=json-in-script&amp;callback=labelthumbs"' type='text/javascript'></script>
      </div>

      <b:include name='quickedit'/>
    </b:includable>
  </b:widget>
</b:section>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM