对比输入框两个值,同时存在或者同时为空

// 判断第三方SpuId

if(_this.product.thirdSpuId && _this.product.thirdSkuId  || !_this.product.thirdSpuId && !_this.product.thirdSkuId){

    console.log("同时为空或者同时存在");

}else {

    console.log("只输入了一个值");

    return;

}

你可能感兴趣的:(对比输入框两个值,同时存在或者同时为空)