- 当我在文本框中输入路径并点击“保存”按钮时。
- 我需要显示确认窗口。
- 我在下面的行之后调试了代码。我没有看到确认框
$('.testingConfirmation').show();
- 你能告诉我如何解决它吗?
- 在下面提供相关的jQuery,HTML和CSS代码。
- 你可以看到小提琴中的错误
http://jsfiddle.net/XY7HT/63/
$('.testingConfirmation').show();
$('.testingConfirmation').hide();
.testingConfirmation {
position: relative;
}
.testingConfirmation .kPopupConfirmationBox {
display: block;
z-index: 3;
left: calc(50% - 175px);
width: 350px;
position: absolute;
}
.testingConfirmation {
display: none;
}
<div class="testingConfirmation">
<div class="kendopobUpBox kendoWindow kPopupConfirmationBox">
<div class="row kendoPopUpGridCollection kendoPopUpContent lineHeightInputs">
<div class="kendoContent">delete player</div>
</div><div class="clearFloat"></div>
<div class="row kendoPopUpFooter textAligncenterImp">
<button class="commonBtn" type="button" id ="deleteDocumentYes" ">Yes</button>
<button class="clearBtn" type="button" id ="deleteDocumentNo" >No</button>
</div><div class="clearFloat"></div>
</div>
</div>