我正在制作一个网站,但我无法在 IE 10 上使用这个 Jquery 插件。这是我的 HEAD 代码:
<head>
<link rel='stylesheet' type='text/css' href='/style/Style.css'>
<link rel='stylesheet' href='http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css' />
<script src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script src='http://code.jquery.com/ui/1.10.3/jquery-ui.js'></script>
<script>
$(document).ready(function() {
var availableTags = [";
while($row5 = mysqli_fetch_array($result)) {
echo "'" . $row5['solicitante'] . "',";
}
mysqli_close($con);
echo "];
$( '#tags' ).autocomplete({
source: availableTags
});
});
</script>
</head>
这是对象标签代码:
<form action="../procesar/procesar_nombre.php" method="post">
<table>
<tr>
<td> <b>Nombre</b> <td>
<td> <input id="tags" type="text" name="nombre" size=30 maxlength=20/> </td>
</tr>
<tr>
<td> </td>
<td> <input type="submit" value="Revisar"> </td>
</tr>
</table>
</form>
这在谷歌浏览器上工作得很好,但在 IE10 上不行,我试着研究一些关于这种情况的东西,但没有答案。
对于那些没有得到我想要做的东西的人来说,页面的源代码在网络浏览器上看起来像这样。头:
<head>
<link rel='stylesheet' type='text/css' href='/style/Style.css'>
<link rel='stylesheet' href='http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css' />
<script src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script src='http://code.jquery.com/ui/1.10.3/jquery-ui.js'></script>
<script>
$(document).ready(function() {
var availableTags = ['Maria F Romero','Carla Custodio','Julio Cesar Pacheco','Dorimar Balza','Miguel Morales','Johana Rodriguez','Oswaldo Zarate','sinnombre','Ronald Grimaldo','Gerardo Leon','Gelenny Lara',];
$( '#tags' ).autocomplete({
source: availableTags
});
});
</script>
</head>
这是对象:
<form action="../procesar/procesar_nombre.php" method="post">
<table>
<tr>
<td> <b>Nombre</b> <td>
<td> <input id="tags" type="text" name="nombre" size=30 maxlength=20/> </td>
</tr>
<tr>
<td> </td>
<td> <input type="submit" value="Revisar"> </td>
</tr>
</table>
</form>