Jquery-UI 对话框 - 在没有 DIV 的情况下运行

Jquery-UI Dialog - on the fly without DIV(Jquery-UI 对话框 - 在没有 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 的情况下运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

document.write() overwriting the document?(document.write() 覆盖文档?)
IE10 and Cross-origin resource sharing (CORS) issues with Image / Canvas(IE10 和 Image/Canvas 的跨域资源共享 (CORS) 问题)
Importing script with type=module from local folder causes a CORS issue(从本地文件夹导入 type=module 的脚本会导致 CORS 问题)
HTML crossorigin attribute for img tag(img 标签的 HTML 跨域属性)
MediaElementAudioSource outputs zeros due to CORS access restrictions local mp3 file(由于 CORS 访问限制本地 mp3 文件,MediaElementAudioSource 输出零)
Start calling js function when PC wakeup from sleep mode(PC从睡眠模式唤醒时开始调用js函数)