简体   繁体   English

如何创建div并根据变化的变量为其指定ID?

[英]How do I create a div and give it an ID based on a changing variable?

I'm making a quiz. 我正在测验。 The user decides how many questions he wants to answer. 用户决定他要回答多少个问题。

A function then takes this number and runs a loop to make an individual question div for each question. 然后,函数将使用该数字并运行循环以为每个问题创建一个单独的问题div。 The quiz shows a Chinese character and the user has to pick the correct translation. 测验显示一个汉字,用户必须选择正确的翻译。

My code: 我的代码:

var fillInQuestion = function() {
    questionDivIdHTML = 'question' + questionNum;

    /****************************************
    How do I make this Div's ID = to questionDivIdHTML?


    // Creates question div
    $('#questionArea').append("<div class='questionDiv'></div>");
    //$('#questionArea:last-child').attr("id", questionDivIdHTML); <-- NOT WORKING


    ***************************************/

    // Sets up a choice bank.
    var choices = [];

    // choices will be chosen from this.
    var tempAnswerSet = allChoices.slice(0);

    //find random item in the database for the question
    var thisQuestion = allQuestions[Math.floor(Math.random() * allQuestions.length)];

    // add that item to choices
    choices.push(thisQuestion);

    // remove item from 'database' so it cannot be used in another question
    allQuestions.splice(allQuestions.indexOf(thisQuestion), 1);

    // remove item from tempAnswer set so it can only be one choice
    tempAnswerSet.splice(tempAnswerSet.indexOf(thisQuestion), 1);

    // add three more items from the database (incorrect items)    
    var i = 3;
    for (i; i > 0; i--) {
        var addChoice = tempAnswerSet[Math.floor(Math.random() * tempAnswerSet.length)];
        choices.push(addChoice);
        // remove the one selected each time so they cant be chosen again
        tempAnswerSet.splice(tempAnswerSet.indexOf(addChoice), 1);
        //console.log("choices length: " + choices.length);
    }
    // shuffle the array
    choices.shuffle();

    // fill in the div with choices.
    $('#questionDivIdHTML').append("Here is an question prompt:" + thisQuestion.english + "   <br>");
    $('questionDivIdHTMLwithHash').append("<input type='radio' name='question<script>questionNum</script>Choice' value='<script>choices[0].hanyu</script>'></input>" + choices[0].hanyu + "<br>");
    $('questionDivIdHTMLwithHash').append("<input type='radio' name='question<script>questionNum</script>Choice' value='<script>choices[1].hanyu</script>'></input> " + choices[1].hanyu + "<br>");
    $('questionDivIdHTMLwithHash').append("<input type='radio' name='question<script>questionNum</script>Choice' value='<script>choices[2].hanyu</script>'></input> " + choices[2].hanyu + "<br>");
    $('questionDivIdHTMLwithHash').append("<input type='radio' name='question<script>questionNum</script>Choice' value='<script>choices[3].hanyu</script>'></input> " + choices[3].hanyu + "<br>");

};

var fillOutQuiz = function() {
    for (questionAmount; questionAmount > 0; questionAmount--) {
        fillInQuestion();
        questionNum += 1;
    }
};

I've gotten this code to work, but I broke it, when trying to add the dynamic ID and loop it. 我已经使该代码正常工作,但是在尝试添加动态ID并将其循环时,我将其破坏了。

You are saying that this portion of code is not working: 您是在说这部分代码不起作用:

$('#questionArea').append("<div class='questionDiv'></div>");
$('#questionArea:last-child').attr("id", questionDivIdHTML);

Well, it does not work because the :last-child pseudo selector is used incorrectly (see below). 好吧,这是行不通的,因为:last-child伪选择器使用不正确(请参阅下文)。 It should be: 它应该是:

$('#questionArea').append("<div class='questionDiv'></div>");
$('#questionArea > :last-child').attr("id", questionDivIdHTML);

Or better, you can rearrange your code like this: 或者更好的是,您可以这样重新排列代码:

$("<div class='questionDiv'></div>")
    .attr("id", questionDivIdHTML)
    .appendTo("#questionArea");

  • #questionArea:last-child selects an element with id = questionArea which is also the last child of its parent #questionArea:last-child选择id = questionArea的元素,该元素也是其父级的最后一个子级
  • #questionArea > :last-child selects the last child of an element with id = questionArea #questionArea > :last-child选择id = questionArea的元素的最后一个孩子

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

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