我的问题是如何将用户名拉到确认弹出窗口中...我是否必须更改我的 php 生成用户列表的方式,或者是否需要一些 mootools 编码来选择父级然后选择用户名...如果是这样我怎么能做到这一点?
我的 PHP 代码使用 codeigniter 生成以下内容,基本上列出了用户名和删除用户的链接。
<div class='item'>
<a href="http://localhost/nstrust/index.php/admin/users/delete/9" class="delete">Delete</a> <a href="http://localhost/nstrust/index.php/admin/users/view/9" class="view">Jamalia</a>
</div>
<div class='item'>
<a href="http://localhost/nstrust/index.php/admin/users/delete/13" class="delete">Delete</a> <a href="http://localhost/nstrust/index.php/admin/users/view/13" class="view">Timothy</a>
</div>
我有以下mootools代码要弹出并确认以查看用户是否真的要删除用户
window.addEvent('domready', function()
{
$$('a.delete').addEvent('click', function(event)
{
if (!confirm("Are you sure you want to remove this user?"))
{
event.stop();
}
});
});