过去一小时我搜索过谷歌,但找不到答案。我有一个变量,我需要将它发送到文本框作为默认值:
if (totalcustomamount < 105) {
totalcustomamount = 105;
}
是我的代码,它可以工作,但我不知道如何在下面的文本框中将变量设置为该值:
<input name="name_of_box" type="text" id="name_of_box" size="4" class="name_of_class">
我通常只会放value="something"
,但我需要使用JavaScript中的变量。这可能吗?
答案 0 :(得分:2)
// id="name_of_box"
document.getElementById('name_of_box').value = totalcustomamount;
答案 1 :(得分:1)
jQuery方式:
$(function() {
if (totalcustomamount < 105) {
$("#name_of_box").val(105);
}
}
答案 2 :(得分:0)
if (totalcustomamount < 105) {
totalcustomamount = 105;
document.getElementById('name_of_box').value = totalcustomamount;
}