我如何return false
在地图功能中。我知道在循环中返回false就是break.But我需要中断并返回(以防止默认操作)
这是我的代码
$arr = $( "select.filter_type" )
$arr.map (i, sel) ->
val = $(sel).val()
if (val == "")
alert("The default action has been prevented")
return false
提前谢谢
答案 0 :(得分:0)
这对我有用
$arr = $( "select.filter_type" )
$v= false
$arr.map (i, sel) ->
val = $(sel).val()
if ( val == "")
alert("The default action has been prevented")
$v= true
return
if $v
return false