首页 | 本学科首页   官方微博 | 高级检索  
文章检索
  按 检索   检索词:      
出版年份:   被引次数:   他引次数: 提示:输入*表示无穷大
  收费全文   335篇
  免费   17篇
  国内免费   29篇
电工技术   4篇
综合类   21篇
化学工业   4篇
金属工艺   1篇
机械仪表   8篇
建筑科学   6篇
矿业工程   2篇
轻工业   5篇
水利工程   1篇
石油天然气   2篇
武器工业   1篇
无线电   35篇
一般工业技术   3篇
冶金工业   2篇
原子能技术   1篇
自动化技术   285篇
  2022年   2篇
  2021年   5篇
  2020年   2篇
  2019年   5篇
  2018年   5篇
  2017年   7篇
  2016年   7篇
  2015年   11篇
  2014年   33篇
  2013年   15篇
  2012年   23篇
  2011年   29篇
  2010年   32篇
  2009年   44篇
  2008年   34篇
  2007年   34篇
  2006年   32篇
  2005年   8篇
  2004年   2篇
  2003年   17篇
  2002年   8篇
  2001年   7篇
  2000年   13篇
  1999年   3篇
  1998年   3篇
排序方式: 共有381条查询结果,搜索用时 15 毫秒
41.
在少儿英语教学中,连词造句是一种重要的教学形式。为提高学生的学习兴趣,模仿贪吃蛇游戏,采用JavaScfipt脚本语言,开发了基于web的吃单词造句的教学游戏,取得了较好的教学效果。  相似文献   
42.
对现有的Web绘图技术进行归纳和分析。根据混合策略的原理.设计一种基于字符串编码的Web绘图方法,并应用于一个客流分析系统的客户端交互绘图和矢量数据采集。应用结果表明,该方法在应用的适用性、交互性和性能方面具有较好的效果。  相似文献   
43.
AJAX技术允许在创建和使用B/S应用的时候,完全实现GUI技术。本文对Ajax技术进行典型化归纳,总结出一个简单的Ajax技术标准,在Web应用中,增加“HttpRequest后台通道”、“业务函数”和“DIV块内参数合成”的处理,利用CSS标记控制写出更清晰,更具移植性的B/S应用。  相似文献   
44.
45.
随着电力业务的不断扩展,勘测积累了大量的工程相关资料,目前大多存储分散,查询调用较为烦琐,再次利用率也非常低。针对电力勘测数据的特点,通过对开源JavaSctipt库和Cesium三维可视化关键技术的研究,设计了一套包含二、三维数据录入、三维可视化展示,数据查询、分析利用以及数据库管理的电力工程数据管理平台,为提高勘测数据管理效率,充分挖掘利用已有数据资源提供信息技术支持。  相似文献   
46.
无论是动态网站还是其他B/S结构的系统,都离不开表单。表单作为客户端向服务器提交数据的主要载体,扮演着十分重要的角色,那么提交的表单数据合法吗?如果不合法怎么办。JavaScript是一种十分便捷的解决方法,它不但能检查用户输入的无效或错误数据,还能检查用户遗漏的必选项,从而也减轻了服务器端的压力。结合常见的用户注册表单中常见的验证来分析表单验证技术。  相似文献   
47.
为了解决电厂运行监视系统的运行状态和监视指标的实时性和便利性问题,提出了一种利用AJAX技术实现系统的Web发布方案,以SVG作为图形系统的Web发布和显示格式,采用以AJAX技术为核心的异步通信机制,有效解决了信息实时动态刷新问题.实际应用表明,采用该方法实现的热电厂监控系统具有节省网络带宽、减少传输时延、页面更新无...  相似文献   
48.
49.
Web applications (apps) are programs created by web technologies such as HTML, CSS, and JavaScript. Web apps can be executed on any platform that supports a web browser. Such portability allows an interesting user experience called app migration, which can save an app's execution state to a file called snapshot, transmit it to another device, and continue the execution using the snapshot. However, existing approaches save all the states of the current app, regardless of its relevance to an app's state, making the snapshot size and snapshot creation time infeasibly large. For example, web apps are often programmed using web frameworks such as jQuery, which are libraries written in JavaScript to support app developments. We found that most objects created by frameworks during their initialization are not relevant to an app's state. Hence, one idea to reduce the snapshot size is not saving those framework objects in the snapshot but creating them after migration via re‐initialization. Unfortunately, this is not always straightforward since the framework objects are intermingled with the app objects in the heap, possibly pointing to each other. To resolve this, we separated app objects that are attached to framework objects by monitoring app's execution and saved them to the snapshot. This paper proposes such a framework separated migration technique, with optimization to reduce the overhead, especially related to monitoring app's execution. With our approach, we could reduce the snapshot size by 89.1% on average and shorten the migration time by 47.6%, increasing the feasibility of app migration.  相似文献   
50.
由于JavaScript自身的语言特性,JavaScript程序中可能存在与运行时变量类型不匹配的缺陷,这类缺陷往往难以被察觉,只有在运行时报错后才能发现故障,而人工检查代码时需要开发者花费大量的时间通过调试的方法来定位查找代码缺陷。提出了一种静态分析JavaScript的方法来检查可能的运行时类型不匹配缺陷。该方法首先基于HTML和JSP页面对于JavaScript文件的引用将整个项目中的JavaScript文件进行分组;接着以分组为单位对JavaScript文件进行分析和变量类型推断,再检查每个分组中是否存在多类型属性;然后对这种多类型属性的使用进行检查;最后对检查结果进行报告,并给出修复建议。实现了一个用于自动检测JavaScript中多类型属性缺陷的工具,并通过在真实JavaScript项目中的实验证明了该方法的可行性,与已有的JavaScript分析方法相比,该方法的效果更优,提升了有关缺陷查找的效率与有效性。  相似文献   
设为首页 | 免责声明 | 关于勤云 | 加入收藏

Copyright©北京勤云科技发展有限公司  京ICP备09084417号