此代碼是爲了在按鈕上方的div中顯示項目項目,但儘管按鈕和提示符工作,但div中沒有顯示文本。幫幫我!Div文字不顯示
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Shopping List</title>
<style>
#button {
width:80px;
height:30px;
}
div.ex {
width:500;
height:500;
}
</style>
<script>
function a() {
var thing = prompt('Insert an item or press cancel');
if (thing != null && thing != undefined) {
document.getElementById('b') += thing;
}
else {
}
}
</script>
</head>
<body>
<div class='ex' style="color:#007AFC"></div>
<button onclick='a()' id='button'>Add Item</button>
</body>
</html>
你沒有文字在你的div – SaturnsEye
你是否希望當你在promt中給出一些文本時它會在div文本中顯示...? –
並且沒有背景顏色...所以決定:內容和/或背景顏色。如果您需要內容,請確保該功能正常工作。 – Enthusiasmus