jQuery ui dialog image for the title

与世无争的帅哥 提交于 2020-01-13 11:27:08

问题


Is it possible when specifying a jQuery UI dialog box, to have an image be placed for my title instead of just plain text?

Thanks


回答1:


You can provide any HTML as the title option, like this:

$("#dialog").dialog({
  title: '<img src="myImage.jpg" />'
});​​​​​​​​​​​

You can see an example in action here


Or, as another demo to annoy the hell out of your users, you could do this:

$("<div />").dialog({
  title: '<marquee>Hello</marquee>'
});​


来源:https://stackoverflow.com/questions/3543532/jquery-ui-dialog-image-for-the-title

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!