我想导入一个文本文件,每个文本文件都以矩阵或仅一个字符串的形式导入到项目中,我尝试使用importdata,textread,readtable等。但是所有这些功能都逐行导入了文本文件。
先谢谢您。
答案 0 :(得分:2)
<select id="test-dropdown">
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
<script>
var selection = document.getElementById("test-dropdown");
// Using addEventListener() to bind custom change event handler
selection.addEventListener("change", function() {
console.log((selection.options[selection.selectedIndex].text));
}); // <--- removed the ()
</script>
将整个文件作为单个字符串导入
fileread