vuejs获取数据<input type =“hidden”

时间:2017-08-01 20:30:38

标签: vue.js vuejs2

=“”

当我尝试获取列表中的数据“Id”时,脚本会出错。

我需要那个领域。但我的回归是错误的

<input type="hidden" name="Id" id="Id"  v-mode="todo.Id">

我保持使用隐藏,因为我没有使用隐藏的imput如何获得该ID

</tr>
    <tr  v-for="todo in todos">
    <td>{{todo.filial}} Id {{todo.Id}}<input type="hidden" name="Id" id="Id"  v-mode="todo.Id"></td>


    Deletar: function (event){
        alert($('#Id').val());
        /*$.post( "Salva.php", { textoDoFormulario: this.todosView.Id, status: "delete"  } );
        $.get('t2576.php', function(resp) {
                todosView.todos = resp;
        }, "json");*/
    },

1 个答案:

答案 0 :(得分:0)

v-model对隐藏输入无效。 related issue