创建django表单弹出窗口的最佳方法是什么。我在线搜索但无法提供帮助。请帮忙。
答案 0 :(得分:0)
有很多选项......最简单的当然是jQuery: https://jqueryui.com/dialog/
Function GetNumberDecimalPlaces(theCell As Range) As Integer
Dim periodPlace as integer, stringLength as integer
periodPlace = InStr(1, theCell.Text, ".")
If periodPlace = 0 Then
GetNumberDecimalPlaces = 0
Else
stringLength = Len(theCell.Text)
GetNumberDecimalPlaces = stringLength - periodPlace
End If
End Function