我使用此代码在click
元素上模拟select
:
$(function(){
$("#click").click(function(){
$("#ts").click();
//$("#ts").trigger("click");
});
});
和HTML代码是:
<select id="ts">
<option value="1">1</option>
<option value="2">Lorem ipsum dolor s.</option>
<option value="3">3</option>
</select>
<input type="button" id="click" value="Click"/>
我测试click
和trigger
,但都不起作用。
感谢您的帮助。
答案 0 :(得分:35)
答案 1 :(得分:15)
这是我认为你能得到的最好的跨浏览器方法。在Safari,Firefox,Chrome和IE上测试过。 对于Chrome,Oscar Jara的答案是可行的方法。 (更新:10-13-2016)
$(function() {
$("#click").on('click', function() {
var $target = $("#ts");
var $clone = $target.clone().removeAttr('id');
$clone.val($target.val()).css({
overflow: "auto",
position: 'absolute',
'z-index': 999,
left: $target.offset().left,
top: $target.offset().top + $target.outerHeight(),
width: $target.outerWidth()
}).attr('size', $clone.find('option').length > 10 ? 10 : $clone.find('option').length).change(function() {
$target.val($clone.val());
}).on('click blur keypress',function(e) {
if(e.type !== "keypress" || e.which === 13)
$(this).remove();
});
$('body').append($clone);
$clone.focus();
});
});
答案 2 :(得分:2)
这就像我想的那样接近:
$(function(){
$("#click").on('click', function(){
var s = $("#ts").attr('size')==1?5:1
$("#ts").attr('size', s);
});
$("#ts option").on({
click: function() {
$("#ts").attr('size', 1);
},
mouseenter: function() {
$(this).css({background: '#498BFC', color: '#fff'});
},
mouseleave: function() {
$(this).css({background: '#fff', color: '#000'});
}
});
});
答案 3 :(得分:2)
我最终在选项本身上设置了选定的属性。 然后甚至在select元素上触发更改。
答案 4 :(得分:0)
我有一个复杂的select
元素,由前一个select
元素中给出的答案提供。选项由AJAX提供,由onchange
事件触发。
根据我的需要,使用模拟用户行为的“隐藏魔术事件”预先填充答案(以密集测试方式)我在“我的魔术事件”中使用以下jQuery代码。它通过索引选择选项:
// Quick feed of my Car Form
document.getElementById('carbrand').selectedIndex = 30; // "PORSCHE"
document.getElementById('carbrand').onchange();
var timeoutID = window.setTimeout(function () {
document.getElementById('model').selectedIndex = 1; // "911"
document.getElementById('model').onchange();
var timeoutID = window.setTimeout(function () {
document.getElementById('energy').selectedIndex = 1; // "SUPER"
document.getElementById('energy').onchange();
} , 200);
} , 200);
Merciàhttps://stackoverflow.com/users/1324/paul-roub pour les corrections; - )
答案 5 :(得分:-3)
对Oscar Jara变种进行少量更新(使用toggle
)
http://jsfiddle.net/mike_s/y5GhB/