gpt4 book ai didi

javascript - 我无法运行 Javascript 代码

转载 作者:行者123 更新时间:2023-12-02 15:17:13 25 4
gpt4 key购买 nike

编辑问题在底部!!

我想让我的自动完成功能正常工作,我总是得到这个:

The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>). Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

我的脚本和 html 代码:

<head runat="server">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><%--<%= Page.Title %> --%>- Ticketsystem</title>
<link href="~/Content/master.css" rel="stylesheet" type="text/css" />
<asp:PlaceHolder runat="server">
<%: Scripts.Render( "~/bundles/modernizr") %>
</asp:PlaceHolder>

<webopt:bundlereference runat="server" path="~/Content/css" />
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />



<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.js"></script>


<script type="text/javascript" lang="ja">
$(function ()
{
$('#tbCompany').autocomplete(
{
source: function (request, response)
{
$.ajax({
url: "Autocomlete.asmx/GetCompanyNames",
data: "{ 'searchTerm': '" + request.term + "' }",
type: "POST",
dataType: "json",
contentType: "application/json;charset=utf-8",
success: function (result) {
response(result.d);
},
error: function (result) {
alert('There is a problem processing your request');
}
});
},
minLength: 0
});
});
</script>
</asp:PlaceHolder>


</head>

<body>
<form runat="server">
<asp:TextBox ID="tbCompany" runat="server" Style="margin-top:10px" ClientIDMode="static"></asp:TextBox>

我不知道我的脚本是否错误或缺少某些内容。我尝试将其放在页面末尾的 div 或占位符中,就像其他问题所建议的那样。

编辑:现在我几乎做了你建议的所有事情,现在看起来像上面和下面的错误。

错误:

Uncaught TypeError: $(...).autocomplete is not a function

最佳答案

正如您在这里看到的:https://support.microsoft.com/en-us/kb/976112内联表达式 <%:不存在。

尝试改变<%: ... %><%= ... %> .

你还加载了 jquery 两次。您的 jquery UI 版本是 1.10.3但您正在加载版本jquery-1.9.1.js .

尝试加载这些版本:

<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.11.4/themes/ui-lightness/jquery-ui.css">

关于javascript - 我无法运行 Javascript 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34356109/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com