我创建了一个简单的表单,当我选择任何东西时,我有一个组合框,我将一个函数放在 onchange 事件中,以便调用它。
然后我通过 jquery 在一个帮助文件中发送这些数据
<script type="text/javascript">
$.noConflict();
function Searchwine(obj,str) {
{queryString: ""+str+""}, function(data){
jQuery.post("http://www.site.com/search/helper/autosuggest.php", {queryString: ""+str+""}, function(data){
if(data.length >0) {
jQuery('#windatano').html(data);
}
</script>
我正在使用此代码通过javascript在自动建议中发布数据并在windatano中打印jquery的重播id
--> 它在 crome 和 ff 和其他所有浏览器中工作正常,但在 IE 中它不工作
有什么帮助吗?谢谢,