0

在过去的一个小时里,我搜索了谷歌,但找不到答案。我有一个变量,我需要将它发送到一个文本框作为默认值:

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 中的变量。这可能吗?

4

3 回答 3

2
// id="name_of_box"
document.getElementById('name_of_box').value = totalcustomamount;
于 2012-08-22T21:59:30.347 回答
1

jQuery方式:

$(function() {
    if (totalcustomamount < 105)  {
        $("#name_of_box").val(105);
    }
}
于 2012-08-22T22:00:49.617 回答
0
if (totalcustomamount < 105)  {
          totalcustomamount = 105;
        document.getElementById('name_of_box').value = totalcustomamount;

}
于 2012-08-22T22:01:04.190 回答