答案 0 :(得分:1)
它应该是一个字符串。
但是从 The Last Crusade 中接受Walter Donovan的建议:
"要非常小心。不要相信任何人。"
答案 1 :(得分:-3)
我认为没有任何浏览器兼容性问题......
url = location.href + ''
代码意味着添加字符串类型
Java是一种汇编语言,int
和double
不一样。所以你需要转换它。
例如
var prize = 10 // int
var txtPrize = price + '' // change price to string
如果我们使用price.length
将返回undefinied
如果我们使用txtPrize.length
将返回2
另一个例子
var txtPrize = "10" // string
var prize = txtPrize * 1 // change to int
如果我们尝试使用Total = txtPrize + 40
将返回1040
如果我们尝试使用Total = prize + 40
将返回50
CMIIW