0
我有一個數量字段,但是當用戶列出字段時,如果他們沒有添加小數點,我想在他們標出字段時加上'.00'。JQuery或Javascript檢查輸入值是否包含
事情是我不知道如何做一個檢查,如果它包含'。'。我知道如何添加」 .00'
這是到目前爲止我的代碼
function AddDecimalToAmounts()
{
var ApproxAmount = $("#ApproximateValue_TextBox").val();
var ApproxAmountVis = $('#chqAdditional_div').is(':visible');
var UncryAmount = $("#UncryAmount_TextBox").val();
var UncryAmountVis = $('#chqAdditional_div').is(':visible');
if (ApproxAmountVis == true && UncryAmountVis== true)
{
if (//Code for if both amount fields are displayed and to add '.00' or not)
{
}
}
else if (ApproxAmountVis == false && UncryAmountVis== true)
{
if (//Code for if only the UncryAmount amount field is displayed and to add '.00' or not)
{
}
}
else if (ApproxAmountVis == true && UncryAmountVis== false)
{
if (//Code for if only the ApproxAmountVis amount field is displayed and to add '.00' or not)
{
}
}
}
您檢查它是否包含'.',就像您檢查任何其他字符串一樣。有什麼問題?你不知道'indexOf()'嗎? – Barmar
'if(value.indexOf('。')== -1){/ *添加小數* /}' –
在JavaScript中,您可以使用indexOf來檢查一個字符串是否包含字符。 –