这是一个HTML代码
<select id="product">
<option value="laptop">Laptop</option>
<option value="candy">Candy</option>
<option value="ebook" selected="selected">Ebook</option>
</select>
<input type="text" id="priceProduct">
这是一个javascript代码
var e = document.getElementById("product");
var strUser = console.log(e.options[e.selectedIndex].value);
if(strUser == "ebook"){
console.log('This is ebook');
}
所以,我只是想从select元素中输入一些像$ 5.00这样的值来输入id priceProduct(我甚至无法给控制台输出)。我完全迷失了。我很感激你的回答。
答案 0 :(得分:1)
将您的代码更改为:
var e = document.getElementById("product");
var strUser = e.options[e.selectedIndex].value;
console.log(strUser);
if(strUser == "ebook"){
console.log('This is ebook');
document.getElementById("priceProduct").value = "$5.00";
}
// -- prints:
// ebook
// This is ebook
console.log
没有返回值。