在现代站点中添加SPFx Webpart时使用Javascript

时间:2018-07-04 13:42:29

标签: sharepoint spfx

我试图弄清楚添加WebPart时如何修改CSS。

该想法是使添加的Web部件的背景跨所有列,例如,Web部件添加在2列页面的左列中。背景将跨所有CanvasZone行。不仅仅是添加Web部件的列。

更新:
这是我在render方法中的代码。我正在使用HelloWebPart来使事情变得非常简单

public render(): void {
    this.domElement.innerHTML = `
      <div class="${ styles.helloWorld }">
        <div class="${ styles.container }">
          <div class="${ styles.row }">
            <div class="${ styles.column }">
              <span class="${ styles.title }">Welcome to SharePoint!</span>
              <p class="${ styles.subTitle }">Customize SharePoint experiences using Web Parts.</p>
              <p class="${ styles.description }">${escape(this.properties.description)}</p>
              <a href="https://aka.ms/spfx" class="${ styles.button }">
                <span class="${ styles.label }">Learn some more</span>
              </a>
            </div>
          </div>
        </div>
      </div>`;  
        jQuery(function(){   
          jQuery('.helloWorld_385074c7').closest('div.CanvasZone').css({
          'background-color': 'green'
          });
        });
  }

1 个答案:

答案 0 :(得分:0)

您可以尝试使用jQuery修改背景,例如:

jQuery(function(){   
        jQuery('.pnpsp_85e6a47f').closest('div.CanvasZone').css({
          'background-color': 'green'
        }); 

enter image description here