This question already has answers here:
How to style default confirm box with only css?
(3个答案)
5年前关闭。
我试图为该构象框应用CSS规则,但未获得预期的结果。
当用户单击要删除的项目时,我想要一个构象。
这是html
(3个答案)
5年前关闭。
我试图为该构象框应用CSS规则,但未获得预期的结果。
当用户单击要删除的项目时,我想要一个构象。
这是html
<div class="myitem">
<a href="example.php/one">Delete Item one</a>
<a href="example.php/two">Delete Item two</a>
<a href="example.php/three">Delete Item three</a>
<a href="example.php/four">Delete Item four</a>
</div>
javascript here
$('.myitem a').click(
function(){ confirm("Are Your Sure?");}
)
最佳答案
您能够做到这一点的唯一方法是完全放弃确认框,而转向模型对话框。在Google进行快速搜索后,即可使用其中的许多功能。 (jQueryUI,Bootstrap等)。
10-05 19:35