问题标签 [jquery-confirm]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
326 浏览

javascript - $HTTP_RAW_POST_DATA 错误 - 不发布数据

我正在尝试通过jquery-confirm插件通过其 ajax-load 函数从表单加载文件数据来执行 AJAX 请求,然后将信息更新到 PHP 文件并最终更新到数据库。

但是,这会导致以下错误。

我什至尝试输入一个空白变量,因为此错误的含义是它没有将数据发布到页面。这只是简单地返回一个未定义的索引,确认它没有发布数据。

这个网站上的一些帖子说要更改php.ini文件等,因为我使用的是大学服务器,我们无权更改这些文件。

这是我执行 AJAX 功能的 JS 文件

我访问变量的 PHP 页面在这里:

这些文件中的空白变量仅用于测试目的。

提前致谢。

0 投票
1 回答
127 浏览

javascript - jquery-confirm $.confirm 单击即可触发多个模态

我正在使用jquery-confirm插件和 Bootstrap 3。确认工作正常,但是如果我在单击确认按钮之前在页面上打开任何引导模式,则会弹出两个确认框。如果我在单击确认按钮之前打开引导模式 5 次,它会同时触发五个确认框,一个接一个地叠加。为什么会这样?

这是我的js:

我做错了什么?

0 投票
0 回答
38 浏览

jquery - .net mvc + jquery.confirm

我正在使用带有jquery.confirm的 .net MVC, 但我遇到了一些问题:

我想显示一个对话框,例如登录对话框,这样做很容易:

这对我来说是一个好方法,因为我还可以访问“myweb/Account/Login”来访问登录页面,并且很容易编写或调试代码。

但是当我通过单击“X”按钮关闭对话框时,此页面失去响应,我认为这是因为当对话框尝试获取 url“/Account/Login”时,它会导致服务器重定向。

我必须这样做:

谁能帮助我?非常感谢!!!

0 投票
0 回答
249 浏览

jquery - Angular 和 jQuery:动态加载组件

我在 Angular 6 中使用jquery-confirm插件,我可以打开带有静态内容的警报和对话框:

现在我想在里面加载一个组件,我想如果我在一个字符串中传递选择器我会加载它。但它没有。

我认为该插件使用 jquery html() 函数将 html 添加到确认框。因为当我尝试这个时:

我检查了一下,插件实际上将选择器添加到了 html 中,但它没有加载组件。

0 投票
1 回答
506 浏览

jquery - jquery-confirm dialog content not updating on form change

I am currently stuck with an issue with the jquery-confirm plugin where I am unable to dynamically alter the content.

What I wish to do is basically, list all the content of the form inputs that were populated inside the content of the jquery-confirm dialog box.

However, since the initialization of the jquery-confirm occurs in the document ready event, the content only retrieves the initial status of the form inputs.

Here's the code I am using

The issue is that no matter what updates I make to the form input, the changes do not show inside the content of the jquery-confirm. The content always displays the initial state of the form inputs.

I have tried attaching the confirm initialization inside an on click even of the form button to try to capture the changes but it still doesn't help.

Can anyone show me how to properly bind the values of the form into the content of the jquery-confirm?

EDIT: (including a simplified version of the HTML form)

EDIT 2:

Created a jsfiddle for this code

https://jsfiddle.net/uxfb8myp/2/

0 投票
1 回答
150 浏览

jquery - 将 Json 结果转换为列表并显示在 jquery-confirm 警报中

我正在编写一个执行 Ajax 调用并将数据作为 Json 返回的小脚本。

如果结果不为空,脚本会显示包含返回数据的警报。

这工作正常,但我想将数据显示为列表,我的问题是如何做到这一点?

json

jquery/ajax 调用

非常感谢您抽出宝贵时间。

0 投票
2 回答
292 浏览

jquery - 选择jquery确认按钮后删除按钮

如何在选择 jquery 'Confirm' 按钮后删除特定行的 'Revoke' 按钮?下面的代码不会永久删除“撤销”按钮。

0 投票
0 回答
46 浏览

jquery - Ajax .done() 和 .fail() 同时触发

我正在使用Jquery Confirm当我触发我的 ajax 调用时,我得到 200 的状态响应,但我的 .done() 和 .fail() 同时触发。如果收到的响应为 200,我是否正确 .done() 将触发?

我在这里做错了什么?

更新

试图强制响应 400 但 .done() 和 .fail() 仍然同时触发

0 投票
2 回答
409 浏览

javascript - 如何使 Jquery-Confirm 的滚动条更宽?

我正在尝试使滚动条更宽,因为当有很多内容要向下滚动时,默认滚动条确实不方便单击和移动得更快。考虑你实例化一个确认:

然后您在其上加载大量内容:

通过使用Google Chrome,滚动条看起来会很细,并且在指向滚动条时需要非常精确才能用鼠标拖动它。对一些人来说,这很难做到。

我尝试通过更改溢出 CSS 属性,但这只会使栏可见或不可见。关于如何迫使它变宽的任何想法?

一个可以玩的小提琴。

提前致谢,

0 投票
1 回答
738 浏览

javascript - jQuery-confirm 防止在 callerElement.hide() 上滚动

我有一个问题,在我隐藏打开确认对话框的按钮元素后,我的页面滚动到顶部。

确认 doalog 关闭后,它会滚动回滚动到调用者元素。如果没有这样的元素,请改为滚动到顶部。我可以阻止那个滚动吗?

我在 js fiddle 中重新创建了我的问题: https ://jsfiddle.net/at6sLy2g/