我在使用jQuery插件TokenInput时遇到问题。在演示中,当添加新令牌并且对于当前文本框行太大时,它们很好地移动到下一行。我有一个问题,他们将改为过去文本框边框一次,然后移动到下一行。因此,您只会看到部分令牌,然后文本框会将其切断。
我完全不知道为什么这不起作用。我正在使用IE8(这是一项要求)。这是我正在使用的代码可以重现这个问题(文件与演示中的相同,我只需要重命名它们进行测试)。
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="Styles/token-input-facebooktesting.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="Scripts/jquery.tokeninputtesting.js" defer="defer"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#test").tokenInput("http://shell.loopj.com/tokeninput/tvshows.php", {
theme: "facebook"
});
});
</script>
</head>
<body>
<div><p>
<input id="test" type="text"/></p>
</div>
</body>
</html>
非常感谢任何帮助