我正在使用 tokenInput jquery 插件进行自动完成。这个脚本工作正常
<script type="text/javascript">
$(document).ready(function () {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "/WebService1.asmx/HelloWorld7",
data: "{}",
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (data) { $("#<%=demo.ClientID %>").tokenInput("http://shell.loopj.com/tokeninput/tvshows.php");
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus);
}
});
});
</script>
但是当我更换线路时
$("#<%=demo.ClientID %>").tokenInput("http://shell.loopj.com/tokeninput/tvshows.php");
和
$("#<%=demo.ClientID %>").tokenInput(data.d);
它向我显示自动完成,但在按钮单击事件中它显示 demo.Text 为空字符串。我检查了 firebug 中的响应,响应是
{"d":[{"__type":"TestForMySite.fb","Id":1,"name":"ALABAMA"},{"__type":"TestForMySite.fb","Id":2,"name":"ALASKA"}]}