Jquery-UI Dialog - on the fly without DIV(Jquery-UI 对话框 - 在没有 DIV 的情况下运行)
问题描述
我有一个我怀疑是一个简单的问题,搜索后我怀疑我的问题的答案是否定的,但要仔细检查......
I have what I suspect to be a simple question and after search I suspect the answer to my question to be no, but to double check...
是否可以在不设置 DIV 的情况下使用 Jquery ui 对话框?
Is it possible to use the Jquery ui dialog with out setting up a DIV?
ie 而不是..
$(function() { $( "#dialog" ).dialog();});...
<div id="dialog" title="我真的需要这个吗?">为了传递一个简单的信息,需要输入很多字</div>
是否有可能只是有类似...的东西
Is it possible just to have something like...
$(function(quickly) { $( "#dialog" ).dialog('这会容易得多');});...
并在需要时使用 quick() 类型的东西调用它.
and call it with a quickly() type thing when needed.
您可能会注意到,我可能会混淆 Javascript,并通过反复试验尽力找到适合我的解决方案.
You may note that I muddle may way through Javascript and do my best through trial and error to hit on a solution that works for me.
我想,我在问我是否可以以类似的方式使用对话框...
I suppose, I'm asking if I can somehow use dialog in a similar fashion to...
alert("这很简单")
...所以我可以在需要时向用户发出警报,而不是点击 url 或按下按钮.
...so I can call an alert to the user whenever I need to, rather than on url click or button press.
希望以上内容有意义,我怀疑我将不得不坚持丑陋的标准警报,但如果有简单的解决方案,请告诉我.
Hopefully the above make sense and I'll suspect I'll have to stick with the ugly standard alert but do let me know if there is a simple solution.
谢谢
推荐答案
希望对大家有帮助,你可以直接把html传给dialog,像这样:
I hope this helps somebody, you can pass html to dialog directly, like this:
$("<p>Hello World!</p>").dialog();
这样您就不必预先构建 div,您可以使用:
so this way you don't have to have a pre-builded div, you could use:
$("<div>My div content</div>").dialog();
将结束标记更改为 </div>
而不是 </p>
changed end tag to </div>
instead of </p>
这篇关于Jquery-UI 对话框 - 在没有 DIV 的情况下运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Jquery-UI 对话框 - 在没有 DIV 的情况下运行
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 直接将值设置为滑块 2022-01-01