下面的代码将把事件“传播”到所有js模块。这是在试图从当前页面移开时触发的。问题是,在提交表单(submit/cancel/save)时,我不会触发这一点。有办法查一下吗?
main.js:
..。
$(document).ready(function(){
$(window).on('beforeunload', function(){
var e = $.Event('webapp:page:closing');
$(window).trigger(e);
if (e.is
请帮帮我:
我有一个带有提交按钮的表单。现在,我想在单击此按钮时打开一个模式窗口。在模式中,我需要显示一个文本框在数据库中插入的东西与2个按钮:取消和推送。在点击推送时,我希望数据被插入到数据库中,并提交表单!不知何故,我无法做到这一点。
<form action="post_data.php" method="post">
<!-- some elements -->
<input type ="submit" value = "Push data">
</form>
我正在使用git diff-index --check --cached HEAD --修剪git提交中的空格。我想使用快照添加Jest测试,但是快照文件包含空格,如果删除它,我的测试总是会失败。因此,我希望从空格检查中排除*.js.snap文件。如何告诉git从git diff-index中排除*.js.snap (或者**/__snapshots/*)文件?我在OSX上使用bash。
同时,我正在通过将我的提交钩子更改为交互式来解决这个问题:
# If there are whitespace errors, print the offending file names and fail.