这是我与嵌入式 js 的链接
<a style="padding: 5px;" onclick="confirm_message(); $('contact_693_').show(); $('errors_693_').hide(); this.hide(); $('dont_693_').show();; return false;" id="the_link_693_" href="#" class="add_someone_else">Check it out</a>
这是我的功能
function confirm_message(){
var response = confirm("Are you sure?");
if(response){
return false;
}else{
return false;
}
}
基本上,如果用户在确认中单击“否”,我不希望任何其他 js 触发....但是所有其他 javascript
$('contact_693_').show(); $('errors_693_').hide(); this.hide(); $('dont_693_').show();; return false;"
无论用户在确认中单击是还是否,仍然会触发......关于如何解决这个问题的任何想法......
此外,这个嵌入式 js 不是由我创建的,而是用 ruby 构建在页面上的......