Ich versuche, auf eine Schaltfläche zu klicken, die ein Dropdown auf einer Auswahlschaltfläche mit Fokus und Eingabetaste auslöst. Die Eingabe wird jedoch nicht ausgelöst. Hier ist mein CodeDropdown-Liste Autofokus bei Auswahl mit Jquery
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
</head>
<body ng-controller="myCtrl">
<button id="showButton">Click Me!</button>
<select id="show">
<option value=""></option>
<option value="">One</option>
<option value="">Two</option>
<option value="">Three</option>
</select>
<input type = "text" id="dean">
<script type="text/javascript">
$("#showButton").click(function(){
$("#show").focus();
e = $.Event('keyup');
e.keyCode= 13; // enter
$('#show').trigger(e);
});
</script>
</body>
</html>
Siehe [http://stackoverflow.com/questions/430237/is-it-possible-to-use-js-to-open-an-html-select-to-show-its-option-list] (http://stackoverflow.com/questions/430237/is-it-possible-to-use-js-to-open-an-html-select-to-show-its-option-list) – TehSphinX
oder hier http://stackoverflow.com/questions/249192/how-can-you-programmally-tell-an-html-select-to-drop-down-for-example-due – TehSphinX
Ich frage mich, ob es möglich ist, einen Tastendruck an zu aktivieren das select-Tag wie "Enter" –