- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 javascript 文件中有我的 javascript 函数,因为这个函数使用了我页面的大部分内容。
function setSecondaryItem() {
var select = document.getElementById("<%= SecondaryArea.ClientID %>");
var len = select.length;
...
...}
我也把这个放在我的页面里了
<script type="text/javascript" src="../NormalUseFuction.js"></script>
我在下拉列表更改时调用此函数
<asp:DropDownList runat="server" ID="PrimaryArea" onchange="setSecondaryItem()" >
<asp:ListItem Value="" Text="select..." Selected="True"></asp:ListItem>
<asp:ListItem Value="A" Text="A.."></asp:ListItem>
<asp:ListItem Value="B" Text="B.."></asp:ListItem>
<asp:ListItem Value="D" Text="D.."></asp:ListItem>
<asp:ListItem Value="E" Text="E.."></asp:ListItem>
<asp:ListItem Value="F" Text="F.."></asp:ListItem>
</asp:DropDownList>
<asp:DropDownList runat="server" ID="SecondaryArea" >
<asp:ListItem Value="1" Text="1.."></asp:ListItem>
<asp:ListItem Value="2" Text="2.."></asp:ListItem>
<asp:ListItem Value="3" Text="3.."></asp:ListItem>
<asp:ListItem Value="4" Text="4.."></asp:ListItem>
<asp:ListItem Value="5" Text="5.."></asp:ListItem>
</asp:DropDownList>
但我发现这会报错:Uncaught TypeError: Cannot read property 'length' of null
谁能告诉我如何解决这个问题?
注意:实际上是页面中的两个下拉列表。 change dropdownlist1 将调用函数来更改 dropdownlist2。
最佳答案
这<%= SecondaryArea.ClientID %>
您正在使用的是 Code Block .也可以引用this question有关更多详细信息,请访问 stackoverflow。
代码块不能放在外部 JavaScript 文件中,因为它们需要呈现为 C#
代码。
作为您的 JavaScript 函数 setSecondaryItem
在许多页面中使用,当然重复它是不好的,您需要在外部 JavaScript 文件中定义您的函数,并使用您的代码块作为参数调用它(在您需要的任何页面中)。
您的外部 JavaScript 文件:
function setSecondaryItem(secondaryAreaId) {
var select = document.getElementById(secondaryAreaId);
var len = select.length;
...
}
在你的.aspx
文件:
<script type="text/javascript" src="../NormalUseFuction.js"></script>
<script type="text/javascript">
setSecondaryItem("<%= SecondaryArea.ClientID %>");
</script>
关于Javascript 找不到元素 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46012914/
例如,我有一个父类Author: class Author { String name static hasMany = [ fiction: Book,
代码如下: dojo.query(subNav.navClass).forEach(function(node, index, arr){ if(dojo.style(node, 'd
我有一个带有 Id 和姓名的学生表和一个带有 Id 和 friend Id 的 Friends 表。我想加入这两个表并找到学生的 friend 。 例如,Ashley 的 friend 是 Saman
我通过互联网浏览,但仍未找到问题的答案。应该很容易: class Parent { String name Child child } 当我有一个 child 对象时,如何获得它的 paren
我正在尝试创建一个以 Firebase 作为我的后端的社交应用。现在我正面临如何(在哪里?)找到 friend 功能的问题。 我有每个用户的邮件地址。 我可以访问用户的电话也预订。 在传统的后端中,我
我主要想澄清以下几点: 1。有人告诉我,在 iOS 5 及以下版本中,如果您使用 Game Center 设置多人游戏,则“查找 Facebook 好友”(如与好友争夺战)的功能不是内置的,因此您需要
关于redis docker镜像ENTRYPOINT脚本 docker-entrypoint.sh : #!/bin/sh set -e # first arg is `-f` or `--some-
我是一名优秀的程序员,十分优秀!