我是 JQuery 的新手,所以这就是我想要做的:在这里我在单击图标时创建一个下拉菜单(称为“otherActions”)。
如果用户选择第一个我希望它做一些事情(比如重置密码)。如果选择了第二个,我希望它做其他事情。
如何使用 JQuery 做到这一点?我不知道方法应该放在哪里。十分感谢你的帮助!
var otherActions = $('<div class="icon" style="...." title="..."></div>');
$(otherActions).click(function()
{
var menuDiv = $('#otherActions');
if (menuDiv.length == 0)
{
menuDiv = $('<div id="otherActions" class="myObject" style="..."></div>');
$('body').append(menuDiv);
}
otherActions = new myObject(menuDiv);
otherActions.addItem('Action 1', 0); //myObject methods
otherActions.addItem('Action 2', 1);
otherActions.popupXY(x, y); //myObject method that creates the drop-down list
});
result.append(otherActions); // this is just one of the icons I have to set up