我有以下代码段。我想在点击“选择”输入字段时在“更改”事件期间运行一些代码。如果所选选项的值为零,我想中止而不执行剩余的代码。这是片段:
$select.on('change',function(){
var newYear = this.value;
if(this.value === 0){
studentDiv.hide();
//I would like to return from here,and not execute any remaining code..
}else{
那么如何从我发表评论的地点“返回”?键入return;
似乎没有做任何事情......
答案 0 :(得分:1)
我觉得这个问题可能还有更多,因为你在评论中回答了这个问题。
return;