我有这个 jquery 函数,它应该在我调用它时触发。现在,当我调用它时,它确实会启动;然而,不幸的是,它也会在 OnLoad 时触发。我怎样才能阻止这种情况发生?
这是我调用该方法的方式:
<telerik:RadListBox ID="RadListType" CssClass="RadListBoxWZMenu" runat="server" OnClientDropped="LocationItem('Type')">
这是方法:
$(function LocationItem(zonetype) {
var NewDialog = $('<div class="droppable"></div>');
NewDialog.dialog({
modal: false,
title: $('<label>' + zonetype + '</label>'),
show: 'clip',
hide: 'clip',
buttons: [
{ text: "Edit", click: function () { EditFields() } },
]
});
return false;
});