我试图为该构造框应用css规则,但我没有得到预期的resutl。 当用户点击要删除的项目时,我想要一个确认 这是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?");}
)
答案 0 :(得分:0)
您能够做到这一点的唯一方法是完全放弃确认框,转而使用模型对话框。快速谷歌搜索后可以使用其中的大量内容。 (jQueryUI,Bootstrap等)。