0

我正在开发一个不使用 的交互式 Web 表单UpdatePanel,因此我尝试使用 JavaScript 来完成大部分功能。对于这个问题,我试图弄清楚如何让 java 脚本将函数添加到 PageLoad() 的下拉列表中。

我有以下 ASP 文件:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <script src="Default.js" type="text/javascript"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            Discovery Form Templates
            <asp:DropDownList ID="uiFormTemplates" runat="server" DataTextField="Subject" DataValueField="DiscoveryFormID" AppendDataBoundItems="true" OnChange="GetTemplateValue();">
                <asp:ListItem Text="--Select One--" Value=""/>
            </asp:DropDownList>
        </div>
        <div id="ChangePlate"></div>
    </form>
</body>
</html>

然后这个javascript:

function GetTemplateValue()
{
var dropdown = document.getElementById("uiFormTemplates");
var SelectedOption = dropdown.options[dropdown.selectedIndex].value;

if (SelectedOption == null) {
    document.getElementById("ChangePlate").innerText = "There is nothing here.";
}
else {
    document.getElementById("ChangePlate").innerText = dropdown;
}
}

我正在尝试使用以下 javascript:

$(document).ready(function () {
    $("#uiFormTemplates").onchange(function () { GetTemplateValue(); });
});

当我OnChange="GetTemplateValue()"从 中删除dropdownlist时,即使使用第二种 javascript 方法,也没有任何反应。我的代码是不是写错了,或者我什至没有从正确的角度来解决这个问题?代码批评或某些方向现在都会有所帮助,我是 js 菜鸟。

4

1 回答 1

2

假设您包含 jQuery(您正在使用),则没有onchange方法。您必须将其更改为on('change', ...),或使用该change方法。另外,#uiFormTemplates不应该工作,你必须使用你的控件ClientID

所以:

$(document).ready(function () {
    $("#<%= uiFormTemplates.ClientID %>").on('change', function () { GetTemplateValue(); });
});

或者:

$(document).ready(function () {
    $("#<%= uiFormTemplates.ClientID %>").change(function () { GetTemplateValue(); });
});
于 2013-02-05T16:23:52.510 回答