我有一個對象從一個字段msg
返回的對象。我試圖從msg中獲取值並將其轉換爲字符串,因此我可以使用.startswith()
。我想下面..將對象轉換爲字符串
var msgstring = msg.value
if(msgstring.startsWith("string")){
//Doing stuff!
}
不過,我得到以下錯誤...
Uncaught TypeError: Object string here has no method 'startsWith'
我要去哪裏錯了?
你有一個缺少'''表明這不是你真正的測試用例。 – 2011-03-15 12:21:58
http://stackoverflow.com/questions/646628/javascript-startswith可能的重複 – Chris 2011-03-15 12:24:52