修改confirm样式
我是怎样修改的confirm的样式
实际上我并没有修改conform的样式 而是采用的jquery-ui的dialog插件
需求
在点这个红叉的时候删除掉一行数据 并且在删除前提示要被删除的那一行的名称
原来的弹出框方式非常丑 是这样的
table代码
<table class="table table-bordered">
<thead>
<tr>
<th width="30">#</th>
<th width="30"><input type="checkbox"></th>
<th>名称</th>
<th width="100">操作</th>
</tr>
</thead>
<tbody>
<c:forEach var="role" items="${pageInfo.list}" varStatus="varStatus">
<tr>
<td>${varStatus.index+1}</td>
<td><input id=&