以下有单引号('')的地方为什么使用单引号,用双引号("")可以吗?上面对应的使用单引号('')或双引号(""),下面使用到或是函数调用时也要对应使用引号('')或双引号("")
........
var Txt1 = parseInt( document.getElementById('txt1').value );
//获取第二个输入框的值
var Txt2 = parseInt( document.getElementById('txt2').value );
//获取选择框的值
var Select = document.getElementById('select').value ; //获取通过下拉框来选择的值来改变加减乘除的运算法则
var result = '';
......
document.getElementById('fruit').value = result;
......
<input type='text' id='txt1' />
<select id='select'>
.......
<input type='text' id='txt2' />
<input type='button' value=' = ' onclick ="count()"/> <!--通过 = 按钮来调用创建的函数,得到结果-->
<input type='text' id='fruit' />
.......