在选择元素上使用jqtransform时,如何设置选择的选项。

我正在为表单使用jqtransform,并且想要从数据库中检索保存的数据时选择适当的选项值。

最佳答案

我相信您可以像不使用jqTransform一样设置select的值。

例如。

$('#mySelect').val('myVal');

编辑:

好吧,这确实很难看,但是应该可以工作:
var mySelect = $('#mySelect');

//find the current selected option
var myOption = mySelect.find('option[value='+mySelect.val()+']');

//find the index of that option
var index = $('#mySelect option').index(myOption);

//trigger the click on the corresponding jqTranfsform element
mySelect.prev('ul').find('li').eq(index).find('a').click();

10-04 15:14