gpt4 book ai didi

javascript - 将项目添加到列表时按钮不执行操作

转载 作者:行者123 更新时间:2023-12-02 14:09:41 25 4
gpt4 key购买 nike

我正在尝试使用 JavaScript 中的 MVC 设计制作一个应用程序,其中我从文本框获取输入并将其插入到列表框中。

从我的 Angular 来看,MVC 应该正确实现,但当我为“添加”按钮创建 onclick 事件时出现问题。按下时没有任何反应。

这里一定有我遗漏的东西......我可以获得一些指导吗?

function Model(){

this.addValue = function(songName){
var opt = document.createElement("option");
var name = songName.value;
name = name.toString();

opt.text = name;
opt.value = name;
document.getElementById("lstBox").options.add(opt);

return clear();
}

function clear(){
document.getElementById('text').value = '';
document.getElementById('artist').value = '';
document.getElementById('genre').value = '';
document.getElementById('type').value = '';
}};

这是我的 Controller :

function Controller(view, model){

this.addItem = function(song){
model.addValue(song);
};
};

并查看:

function View(){

var songName = document.getElementById('text'),
artistName = document.getElementById('artist'),
genre = document.getElementById('genre'),
type = document.getElementById('type'),
addBtn = document.getElementById('click'),
listBox = document.getElementById('lstBox');

this.control = function(controller){
addBtn.onclick = controller.addItem(songName);
}};

这是文本框和列表框的 HTML:

    <html>
<head>
<title>Application</title>
<script src="View.js"></script>
<script src="Model.js"></script>
<script src="Controller.js"></script>
</head>
<body>
<!-- Song Input view -->
<h1>Music List</h1>
<fieldset class="settingsView">
<legend><b><i>Insert Song</i></b></legend><br>
<label for="text">Insert song name:</label><br>
<input type="text" id='text'/><br><br>
<label for="artist">Artist:</label><br>
<input type="text" id="artist"/><br><br>
<label for="genre">Genre</label>
<select id="genre">
<option style='display: none'>
<option value="Pop">Pop</option>
<option value="Rock">Rock</option>
<option value="Dubstep">Dubstep</option>
<option value="Hip-Hop">Hip-Hop</option>
</select><pre></pre>
<label for="type">Type:</label>
<select id="type">
<option style='display: none'>
<option value="mp3">MP3</option>
<option value="mp4">MP4</option>
<option value="wmv">WMA</option>
<option value="mpg">WAV</option>
</select><br><br><br>
<button class="bttn" type="button" id="click">Add</button><br>
<style>
.settingsView{
width: 270px;
float: left;
}

.bttn{
width: 200px;
height: 30px;
margin: 0 auto;
display: block;
}
</style>
</fieldset>
<label for="listText">Song List:</label><br>
<select class="listBox" size="10" name="listBox" id="lstBox" multiple>
<option selected>Nothing to see
<option>Michael Jackson
<option>Skrillex
<option>Matilda has Worms
<option>Schnitzel Blast
</select>
<style>
.listBox{
width: 400px;
height: 500px;
position: relative;
}
</style>
</fieldset> -->
</body>
<script>
var model = new Model();
var view = new View();
var controller = new Controller(view, model);
view.control(controller);
</script>
</html>

最佳答案

您正在使用 document.getElementsById() - 没有 getElementSById - 请注意 S

document.getElementById() 它将返回单个元素。

还有document.getElementsByTagName()document.getElementsByClassName()。这两个都将返回一个 HTMLCollection - 和类似数组的元素对象。

看看你的代码,似乎你需要做的就是将 getElementsById 更改为 getElementById

最后一点 - 浏览器控制台是您的 friend 。你的控制台 100% 会向你显示一堆错误消息,指出 document.getElementsById() is not a function - 使用 JS 开发时,请始终引用你的控制台。

您还遇到了如何分配 onclick 的问题。

应该是这样的:

addBtn.onclick = function(){controller.addItem(songName)};

这是一个适合你的 fiddle - 唯一的改变就是上面

https://jsfiddle.net/Lfbhmwhe/

关于javascript - 将项目添加到列表时按钮不执行操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39731287/

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