本文介绍了为什么标题中的Qualtrics JS似乎只适用于第一页?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图将它放在Qualtrics标题中,其中包含Qualtrics中各个问题中的标记和JS部分。

I have tried to place it in in the Qualtrics header with the tag and the JS section within the individual questions in Qualtrics.

此代码成功隐藏了第一个问题底部的由Qualtrics支持选项卡,但第一个问题后面的所有其他问题将显示Powered by Qualtrics选项卡。

This code is successful in hiding the "Powered by Qualtrics" tab at the bottom of the first question, but every other question after the first one will show the "Powered by Qualtrics" tab.

FYI此Qualtrics调查目前通过iframe标签嵌入到其他网站上。

FYI this Qualtrics survey is currently embedded on another site via iframe tags.

有什么想法吗?

<script>
Qualtrics.SurveyEngine.addOnload(function() 
{ 
    var plug = document.getElementById("Plug");
    plug.style.cssText += ';display:none !important;';
}); 
</script>

资料来源:

推荐答案

你可以在Look下的页脚中使用它&安培;感觉 - >高级:

You can use this in the Footer under Look & Feel -> Advanced:

<script>

    var plug = document.getElementById('Plug');

    if (plug) {
        plug.parentNode.removeChild(plug);
    } 

</script>

这篇关于为什么标题中的Qualtrics JS似乎只适用于第一页?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 20:17