在过去的半小时里,我一直在努力解决一个奇怪的问题。看看这段代码:
var select=$('#models option');
var selectedOption=$('#models option:selected');//function stops execution at this line
//Rest of the code goes here
当我到达我说$('#models option:selected')
的行时,该过程只存在该函数而没有任何警告或错误。我一直这样做没有任何问题。我已经尝试了('#models :selected')
但我仍然得到同样的东西。有没有人知道发生了什么?