【Vue】拼接vue的onclick事件


问题描述:

JS拼接页面元素时,vue的onclick事件报错

解决方案:

<script type="text/javascript">
    //新增包裹控件
    CopyPackageControl: function () {
        var oTable = document.getElementById("tbContent");
        var index = oTable.rows.length;
        console.log(index)
        if (index > 9) {
            layer.msg('新增包裹不能超过10个!');
            return;
        } 
        var newRow = oTable.insertRow(index); 
        newRow.innerHTML = '' +
                                '' + parseInt(index + 1) + '' +
                                ' ' +
                                    '
' + '' + '' + '' + '
' + ' ' + ''; //事件绑定通过onclick进行绑定,而事件内容则通过定义的vue的变量divAlertInfoVue.doRemoveDiv()方法来进行指定 newRow.className = "divItemSon"; }, script>