Meteor Dropdown list get and set

前端 未结 2 731
情歌与酒
情歌与酒 2021-02-06 11:30

What is the best way to get and select values from a dropdown list (and also in radio) in Meteor. I have created a helper:

Template.categories.helpers({
    ca         


        
2条回答
  •  时光说笑
    2021-02-06 11:50

    Template HTML:

    
    

    Template js:

    Template.categories.helpers({
        categories: function(){
            return ["facebook", "news", "tv", "tweets"]
        }
    });
    
    Template.categories.events({
        "change #category-select": function (event, template) {
            var category = $(event.currentTarget).val();
            console.log("category : " + category);
            // additional code to do what you want with the category
        }
    });
    

提交回复
热议问题