<span data-bind="click: (@isJointVentureUser) ? $.proxy($root.SaveSlot, $root) : new Date(AvailableSlots) - new Date() < 0 && ( Booked != 3) ? null : $.proxy($root.SaveSlot, $root)}"></span>
在点击属性上我必须使用ternarry运算符它工作正常但是当我使用&#34; @ isJointVentureUser&#34; cshtml变量它开始给我错误&#34;&lt; 0&#34;
&LT;符号跨度关闭/打开标记的一些问题。 定义&#34; @ isJointVentureUser&#34;
@{
var isJointVentureUser = True;}
问题是@ with isJointVentureUser变量。删除后效果很好。