javascript – jQuery对话框中的箭头

有什么方法可以在jQuery对话框的左边显示箭头提示?我想实现如下图所示的功能.如何使用Theme roller CSS和图标做到这一点?

jQuery Dialog Customization http://www.freeimagehosting.net/uploads/74b51bb861.jpg

最佳答案
更新:我在编辑之前发布了我的第一个答案,表明箭头被放置在对话框的正文中,所以这是我更新的代码

var $mydialog = $('

myArrow div已被移动到对话框的主内容div,CSS可能是这样的:

.myArrow{
  display:block;
  position:absolute;
  width:15px;
  height:15px;
  left:-15px; /* pushes the arrow OUTSIDE the Box */
  top:50px; /* or however far from the top you wish */
  background: url(path/to/arrow.jpg) center right no-repeat;
  margin:0 15px 0 0;
  }

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...