以下有单引号('')的地方为什么使用单引号,用双引号("")可以吗?上面对应的使用单引号('')或双引号(""),下面使用到或是函数调用时也要对应使用引号('')或双引号("")

来源:6-11 编程练习

吾爱吾师

2015-11-23 19:34

........

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' />   

.......

写回答 关注

3回答

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468062 学习 · 21891 问题

查看课程

相似问题