Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/372.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/73.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/silverlight/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 多个问题在一个mTurk命中。创建“下一步”按钮_Javascript_Html_Amazon Web Services_Nlp_Survey - Fatal编程技术网

Javascript 多个问题在一个mTurk命中。创建“下一步”按钮

Javascript 多个问题在一个mTurk命中。创建“下一步”按钮,javascript,html,amazon-web-services,nlp,survey,Javascript,Html,Amazon Web Services,Nlp,Survey,我在mTurck上创建了一个任务,我希望人们根据一个简单的问题对句子进行1到100的等级排序 问题是我希望每一个土耳其人每击100句话,因为每个人一句话(或者仅仅十几句或两句话)对我来说不够好 我希望一次只显示一句话,并使用某种“下一步”按钮,而不是让Turker滚动在一个网页上抛出100句话(出于方便的原因)。除此之外,我希望Turker能够在对所有100个句子(或其他任意数字)评分后才能提交命中率 我已经为一个问题创建了基本的HTML代码,但我不知道如何创建一个下一步按钮,使我可以让突厥者一

我在mTurck上创建了一个任务,我希望人们根据一个简单的问题对句子进行1到100的等级排序

问题是我希望每一个土耳其人每击100句话,因为每个人一句话(或者仅仅十几句或两句话)对我来说不够好

我希望一次只显示一句话,并使用某种“下一步”按钮,而不是让Turker滚动在一个网页上抛出100句话(出于方便的原因)。除此之外,我希望Turker能够在对所有100个句子(或其他任意数字)评分后才能提交命中率

我已经为一个问题创建了基本的HTML代码,但我不知道如何创建一个下一步按钮,使我可以让突厥者一个接一个地回答问题,而不必低声回答

这是一个单句html代码:

<!-- You must include this JavaScript file -->
<script src="https://assets.crowd.aws/crowd-html-elements.js"></script>

<!-- You must include crowd-form so that your task submits answers to MTurk -->
<crowd-form answer-format="flatten-objects">

    <p>

        Read the piece of text below and use the slider below indicate how much do you agree with the following statement:


    </p>


    <p><strong>
            A statement(doesn't change) (0 = it doesn't bother me at all, 100 = it   really bothers me): <br></br><br></br>
    </strong>
    ${original_text}
    </p>

     <p>

        <p><crowd-slider style="width: 800px; height: 20px;" name="mistakeRate" min="1" max="100"  required pin/></p>


  </p>
</crowd-form>


阅读下面的文本并使用下面的滑块表明您对以下陈述的同意程度:

一句话(不变)(0=一点也不困扰我,100=真的困扰我):



${原始文本}

如果你有一个想法,或者甚至是一些其他的模板,可以让我创建我想要的任务,我将非常感谢

谢谢,
Ofir

您应该能够使用以下命令:谢谢!我最终还是用了类似的东西。