uni.createSelectorQuery().select("#"+e); 这样获取值提示 DOMException: Failed to execute 'matches' on 'Element': '#ids0' is not a valid selector.
uni.createSelectorQuery().select("#id1"); 这样写就没问题
我现在要实现select("#"+e)这个效果怎操作
发现问题所在了 这里的e 不能带特殊支付 斜杆都不行
uni.createSelectorQuery().select("#"+e); 这样获取值提示 DOMException: Failed to execute 'matches' on 'Element': '#ids0' is not a valid selector.
uni.createSelectorQuery().select("#id1"); 这样写就没问题
我现在要实现select("#"+e)这个效果怎操作
发现问题所在了 这里的e 不能带特殊支付 斜杆都不行
0 个回复