可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
I have a dropdown: <asp:DropDownList id="dropdownid" runat="server" class=blah"/>
in my jQuery, I assign change event like this:
$('#dropdownid').change(function() {......});
Now, this works when I select different value from the dropdown, however let's say I want to select the same value again. (because I want to make another call with the same value)
So, when I select it again, (without changing the value) just by clicking on the selected value from the dropdown and "selecting" it again, no event fires.
Is there another event in jquery that I have to assign to it? what's the workaround?
回答1:
To expand Vincent Ramdhanie's suggestion, take a look at doing something like this. Essentially, you end up with your own jQuery function that you can re-use elsewhere.
Step 1: Create the jQuery Function
(function($) {
$.fn.selected = function(fn) {
return this.each(function() {
var clicknum = 0;
$(this).click(function() {
clicknum++;
if (clicknum == 2) {
clicknum = 0;
fn(this);
}
});
});
}
})(jQuery);
Step 2: Make sure that the newly created jQuery Function's file is referenced for use:
<script src="Scripts/jqDropDown.js" type="text/javascript"></script>
Step 3: Utilize new function:
$('#MyDropDown').selected(function() {
//Do Whatever...
});
ORIGINAL INFO
With your current code base, selecting the same value from the asp:DropDownList will not fire the change event.
You could try adding another jQuery function for the .blur event. This would fire when the control loses focus:
$('#dropdownid').blur(function() {......});
If they blur function doesn't work for you, I'd add a refresh button or something to that affect that fires the function you are trying to utilize.
回答2:
Try this:
$(document).ready(function(){
var clicknum = 0;
$("#dropdownid").click(function(){
clicknum++;
if(clicknum == 2){
alert($(this).val());
clicknum = 0;
}
});
});
First you are creating a variable clicknum to track the number of clicks because you do not want the event to fire every time the user clicks the drop down box. The second click is the selection that the user makes.
If click num happens to be 2 then this is a second click so fire the event and reset clicknum to 0 for the next time. Otherwise do nothing.
回答3:
Simply wireup click event handlers to the enclosed option controls instead of the select:
$('#dropdownid option').click(function() {......});
This will only fire when you select an option from the dropdown, regardless of whether it changes.
回答4:
According to the API:
The change event fires when a control
loses the input focus and its value
has been modified since gaining focus.
You might want to try the mousedown or click events as an alternative.
回答5:
A lot of the current solutions will break in a lot of situations. Any solution that relies on checking the click count twice will be very fickle.
Some scenarios to consider:
- If you click on, then off, then back on, it will count both clicks and fire.
- In firefox, you can open the menu with a single mouse click and drag to the chosen option without ever lifting up your mouse.
- If you use any combination of keyboard strokes you are likely to get the click counter out of sync or miss the change event altogether.
- You can open the dropdown with Alt+↕ (or the Spacebar in Chrome and Opera).
- When the dropdown has focus, any of the arrow keys will change the selection
- When the dropdown menu is open, clicking Tab or Enter will make a selection
Here's a more comprehensive extension:
The most robust way to see if an option was selected is to use the change
event, which you can handle with jQuery's .change()
handler.
The only remaining thing to do is determine if the original element was selected again.
This has been asked a lot (one, two, three) without a great answer in any situation.
The simplest thing to do would be to check to see if there was a click
or keyup
event on the option:selected
element BUT Chrome, IE, and safari don't seem to support events on option
elements, even though they are in the w3c recommendation
Inside the Select
element seems to be a black box. If you listen to events on it, you can't even tell on which element the event occurred or whether the list was open or not.
The next best thing then, seems to handle the blur
event. This will indicate that the user has focused on the dropdown (perhaps seen the list, perhaps not) and made a decision that they would like to stick with the original value. To continue handling changes right away we'll still subscribe to the change
event. And to ensure we don't double count, we'll set a flag if the change event was raised so we don't fire back twice:
Code:
(function ($) {
$.fn.selected = function (fn) {
return this.each(function () {
$(this).focus(function () {
this.dataChanged = false;
}).change(function () {
this.dataChanged = true;
fn(this);
}).blur(function (e) {
if (!this.dataChanged) {
fn(this);
}
});
});
};
})(jQuery);
Then call like this:
$("#dropdownid").selected(function (e) {
alert('You selected ' + $(e).val());
});
Updated example in jsFiddle
回答6:
Check out this solution:
http://ledomoon.blogspot.com/2009/12/dropdown-selected-change-event-by.html
$(document).ready(function () {
// select all the divs and make it invisible
$("div.Content").css("display", "none");
// Find all the combos inside the table or gridview
$("#tblItems").find("select.Status").each(function () {
// Attached function to the change event of each combo
$(this).change(function () {
if ($(this).val() == "test1") {
// Change the visibility of the next div after the selected combo if the selected value = test1
$(this).parent().find("div.Content").fadeIn("slow"); //css("display","block");
} else {
$(this).parent().find("div.Content").fadeOut("slow"); //.css("display","none");
}
});
});
});
Hope this helps
回答7:
This issue you are having is due to the client's handling of the base select HTML. Since most clients aren't going to flag a non change, you are going to have to try something different.
I would probably add a "refresh" button or something like that but I am a developer and not a designer so I am probably wrong. :)
回答8:
The selected item of a drop down is there to reflect a choice already made.
My suggestion is to reset the dropdown to a default value like "Select...", every time a required action is completed. So, if the user need to perform Action A twice, the dropdown would reset after each action.
- User selects Action A from the dropdown.
- Action A is performed and dropdown is reset.
- User selects Action A from the dropdown.
- Action A is performed and dropdown is reset.
Hope this helps,
Rich
回答9:
For me the following solution worked fine:
$("#dropdownid select").click(function() {
alert($("#dropdownid select option:selected").html());
});
回答10:
Also:
$('#dropdownid select option').click(function() {
....
}