⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tu1.15.htm

📁 一部非常好的javaScript教程
💻 HTM
字号:
<HTML>
<HEAD>
  <TITLE>赋值运算符</TITLE>
</HEAD>
<BODY>
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
var a=3;
var b=2;
document.write("a=3, b=2<P>");
document.write("a+=b = ");  document.write(a+=b);  document.write("<BR>");
document.write("a-=b = ");  document.write(a-=b);  document.write("<BR>");
document.write("a*=b = ");  document.write(a*=b);  document.write("<BR>");
document.write("a/=b = ");  document.write(a/=b);  document.write("<BR>");
document.write("a%=b = ");  document.write(a%=b);  document.write("<BR>");
document.write("a&=b = ");  document.write(a&=b);  document.write("<BR>");
document.write("a|=b = ");  document.write(a|=b);   document.write("<BR>");
document.write("a^=b = ");  document.write(a^=b);   document.write("<BR>");
document.write("a|=b = ");  document.write(a|=b);   document.write("<BR>");
document.write("a&lt;&lt;=b = ");  document.write(a<<=b);   document.write("<BR>");
document.write("a>>=b = ");  document.write(a>>=b);   document.write("<BR>");
document.write("a>>>=b = ");  document.write(a>>>=b);   document.write("<BR>");
// -->
</SCRIPT>
</BODY>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -