<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<h1>Playlist</h1>
<form>
<input type="text" id="songInput" placeholder="Enter a song">
<input type="button" id="songButton" value="Add to Playlist">
</form>
<ul id="playlist">
</ul>
</body>
</html>
上面的HTML鏈接到下面的JavaScript值:JavaScript不包括在列表項
window.onload = init;
function init(){
var button=document.getElementById("songButton");
button.onclick=handleSongButtonClick;
}
function handleSongButtonClick(){
var input = document.getElementById("songInput");
var songName = songInput.value;
var ul = document.getElementById("playlist");
var li = document.createElement("li");
li.value=songName;
ul.appendChild(li);
}
當我輸入一首歌曲的所有它給人的問題是什麼是子彈,沒有文本值?請幫助它可以在這裏找到http://jsbin.com/EROcOGo/2/edit
你會很驚訝有多少「不工作」來描述你的問題 –
列表項沒有值財產,IIRC。 – isherwood