2014-06-30 81 views
0

我升級了struts jquery插件到3.7.1和jquery-ui.js到1.10.4。 與我以前的struts jquery插件3.1.1和jquery-ui.js 1.8.15,字符串的indexOf正在工作。升級後不知道它擊中的位置。我收到以下錯誤。indexOf爲struts jquery插件後不工作的字符串3.7.1升級

SCRIPT5007: Unable to get value of the property 'indexOf': object is null or undefined 

我的代碼如下。

var innerSpanId = $(this).attr('id'); 
var value = innerSpanId.indexOf('accountcheckbox'); 

請給出建議嗎?

+0

零環境無法提供幫助。 –

回答

0

我試圖得到沒有對象的字符串索引。

在升級的jquery中使用字符串對象。

var innerSpanId = new String($(this).attr('id')); 
var value = innerSpanId.indexOf('accountcheckbox'); 

Works Perfect !!!