Code not running in IE 11, works fine in Chrome

前端 未结 8 1222
春和景丽
春和景丽 2020-12-04 17:16

The following code can be run without a problem in Chrome, but throws the following error in Internet Explorer 11.

Object doesn\'t support property or

8条回答
  •  旧巷少年郎
    2020-12-04 17:59

    Replace the startsWith function with:

    yourString.indexOf(searchString, position) // where position can be set to 0
    

    This will support all browsers including IE

    Position can be set to 0 for string matching from the start meaning 0th position.

提交回复
热议问题