本文介绍了关于AJAX Control Toolkit AutoCompleteExtender与jQuery统一的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,

我必须使用AJAX控件工具包的AutoCompleteExtenderjQuery.uniform来设置输入控件的样式.

这就是我实现jQuery.uniform:
的方式

Hello there,

I''ve got a problem with the AutoCompleteExtender of the AJAX Control Toolkit and jQuery.uniform which I have to use to style input controls.

This is how I''ve implemented jQuery.uniform:

<script type="text/javascript" charset="utf-8">
  $(function(){
    $("input, textarea, select, button").uniform();
  });
</script>


现在,只要出现建议的关键字列表,它就会隐藏在其他控件的后面.
有什么办法可以将关键字列表放在最前面吗?!


Now whenever the list of suggested keywords shows up it is hidden behind the other controls.
Is there any way to bring the keyword-list to the front?!

Thanks in advance!

推荐答案



现在,只要出现建议的关键字列表,它就会隐藏在其他控件的后面.
有什么办法可以将关键字列表放在最前面吗?!

预先感谢!


Now whenever the list of suggested keywords shows up it is hidden behind the other controls.
Is there any way to bring the keyword-list to the front?!

Thanks in advance!


这篇关于关于AJAX Control Toolkit AutoCompleteExtender与jQuery统一的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 03:00