, 내가 어떻게 알아 냈 이것과 저는 다른 사람들이 똑같이해야 할 필요가있을 때를 대비하여 여기에 해결책을 게시하고 싶었습니다. 그러나 Qualtrics Support에서이 작업을 수행해야한다는 것에 동의합니다 ...
질문의 JavaScript 부분에 다음 코드를 추가 할 수 있습니다.
Qualtrics.SurveyEngine.addOnload(function() {
// first we wait ten milliseconds, for safety
setTimeout(function(){ return undefined; }, 10);
// make the div with id "subliminal" visible
$("subliminal").style.display = 'block';
// make the div invisible again, after 30 milliseconds
setTimeout(function(){ $("subliminal").style.display = "none" ; }, 30);
// click the next button to move on to the next page
$('NextButton').click();
});
그리고 질문 자체에서 풍부한 콘텐츠 편집기로 이동해야합니다 소스가 활성화되어 있는지 확인이 추가 :
<div id="subliminal" style="display:none">YOUR TEXT HERE</div>
에 오신 것을 환영합니다 스택 오버플로! 좋은 질문을하고 좋은 대답을 얻으려면 [SO Question Checklist] (http://meta.stackoverflow.com/questions/260648/stack-overflow-question-checklist)를 검토하십시오. –