Closed. This question needs debugging details。它当前不接受答案。
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
去年关闭。
我为拆分数组值编写代码。但是我得到这个错误。
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
去年关闭。
我为拆分数组值编写代码。但是我得到这个错误。
var modeOfSending = $('#retrieveValueSupplier').val();
var arrayBuild = modeOfSending.split(',');
最佳答案
这是因为modeOfSending未定义..您是否尝试调试$('#retrieveValueSupplier').val();
的值?
10-01 13:24