代码搜索:Language
找到约 10,000 项符合「Language」的源代码
代码结果 10,000
www.eeworm.com/read/245145/12815684
aspx 3-2.aspx
Enum Range As Long
Max = 2147483648
Min = 255
End Enum
Test Enum
www.eeworm.com/read/245143/12816255
htm 2-29.htm
var strHello = "网页编程";
var strResult = "你好,";
strResult += strHello;
//等价于:strResult = strResult + strHello;
document.write(strResult);
www.eeworm.com/read/245143/12816293
htm 2-62.htm
var Shell = new ActiveXObject("WScript.Shell") ;//
try{
var cmd="mspaint.exe" ;//
var aa = Shell.Run(cmd,1, true) ;//
}
catch(e){
alert ("目录不存在文件
www.eeworm.com/read/245143/12816302
htm 2-48.htm
var a = parseInt("123China");
var b = parseFloat("123.12China");
document.write (a + "");
document.write (b);
www.eeworm.com/read/245143/12816309
htm 2-28.htm
document.write(true&&false);
document.write("");
document.write(false&&false);
document.write("");
document.write(true|
www.eeworm.com/read/245143/12816342
htm 2-26.htm
var arrUserName = new Array(2);
arrUserName[0] = "Bill";
arrUserName[1] = "Bob";
document.write(arrUserName[0]);
document.write("");
www.eeworm.com/read/245143/12816353
htm 2-37.htm
function getSqrt(iNum)
{
var iTemp = iNum * iNum;
document.write(iTemp);
}
getSqrt(8);