无法获得该对象

时间:2011-01-21 11:07:05

标签: javascript jquery

我在MVC的Slider概念中工作。我在ascx文件中的代码是,

 $(function () {
    alert('a');
    var List = $('select#ScaleList').selectToUISlider().next();
    alert(List);
    fixToolTipColor();
});

<%=Html.DropDownList("CList", null, "-Select Scale-", new { id = "ScaleList", Style = "display:none" })%>

在firefox中,上面的代码运行正常。在IE中,我无法获得"$('select#ScaleList').selectToUISlider().next();"的对象......它显示了无效的参数。

如何得到这个......

1 个答案:

答案 0 :(得分:0)

怎么样

$(function () {
    alert('a');
    var $List = $('select#ScaleList');
    $List.selectToUISlider().next();
    alert($List);
    fixToolTipColor();
});

以防这些方法中的任何一个返回jQuery对象中的select之外的其他内容。