【发布时间】:2016-12-25 12:09:35
【问题描述】:
我有这个有两个选择标签的 html 代码。我想使用 ajax 填充我的 'collegeselect' 对应于 'departmentselect'。
HTML 代码名称'collegedepartment.html'
<html>
<title>College Life</title>
<body>
<select id="collegeselect" onchange=""myFunction()></select><br>
<select id="departmentselect"></select>
</body>
<script>
function myFunction()
{
}
</script>
</html>
有什么方法可以从 JSON 文件中填充选择标签 id="collegeselect" 的键值,然后在选择标签 id="departmentselect" 中加载其部门列表的值?我不知道从哪里开始,因为我是这种编程语言的新手,我正在学习它。
这是 JSON 文件 JSON 文件 名称 'CollegeAndDepartment.js'
{
"College of CAS": ["Biology", "English", "LIACOM", "Library & Information Science", "Mass Communication", "Philosophy", "Political Science", "Psychology"],
"College of CICCT": ["Associate in Computer Technology", "B.S. Computer Science", "B.S. Information System", "B.S. Information Technology"],
"College of Commerce": ["Associate in Office Administration", "B.S. in Accountancy", "B.S. in Hotel and Restaurant Management", "B.S. Office Administration", "B.S. Tourism", "Business Administration", "Entrepreneurship", "Finance", "Human Resource Development", "Management", "Management Accounting", "Marketing"],
"College of Education": ["Bio-Chem", "Biology", "Computer Education", "English", "Filipino", "General Science", "Home Economics", "MAPE", "Mathematics", "Physical Education", "Science and Health", "Social Studies", "Values Education"],
"College of Engineering": ["B.S. Civil Engineering", "B.S. Computer Engineering", "B.S. Electrical Engineering", "B.S. Electronics & Communications Engineering", "B.S. Industrial Engineering", "B.S. Mechanical Engineering"],
"College of Law": ["Bachelor of Law"],
"College of Nursing": ["Associate in: Health Science Education", "B.S. Nursing"]
}
【问题讨论】:
标签: javascript jquery html json ajax