Using an if statement to declare the value of a const(1个答案)1年前关闭。这个问题是重复的,应该删除,由于某些原因这是不可能的,可以有管理员请删除它?
vhmi4jdf1#
const type = blfType === "field" ? $("#fieldTypeInput"+blfId).val() : blfType
vkc1a9a22#
使用conditional operator:
2条答案
按热度按时间vhmi4jdf1#
const type = blfType === "field" ? $("#fieldTypeInput"+blfId).val() : blfType
vkc1a9a22#
使用conditional operator: