JavaScript 学习笔记二 字符串拼接 var str="hello"; str+="world"; 实际上,这段代码在幕后执行的步骤如下: (1) 创建存储"hello"的字符串。 JavaScript 2022-04-24 315 点赞 4 评论 477 浏览
javascript 获取iframe里页面中元素值的方法 IE方法:document frames[myFrame] document getElementById(test) value; 火狐方法:document getElementById(m JavaScript 2022-04-03 272 点赞 4 评论 412 浏览