上一页 1 ··· 306 307 308 309 310 311 312 313 314 ··· 341 下一页
摘要: 问题描述(Description): When you use the Microsoft Visual Studio 2005 IDE, a lockup condition may occur, and the IDE stops responding (hangs). Additionally, you cannot close the IDE, and you may receive ... 阅读全文
posted @ 2009-03-26 19:10 emanlee 阅读(723) 评论(0) 推荐(0)
摘要: C语言程序设计 答疑安排(2009春季 1-10周)地点:8-309,或者8-409,如果8-309,8-409没开门则到8-308教室。时间:黑老师,第六周,周四下午,2:10-4:00金老师,第七周,周二下午,4:10-6:00王老师,第八周,周三晚上,7:30-9:00王老师,第九周,周三晚上,7:30-9:00李老师,第十周,周三下午,4:10-6:00李老师,第十周,周五下午,2:10-... 阅读全文
posted @ 2009-03-24 18:11 emanlee 阅读(366) 评论(0) 推荐(0)
摘要: /* 牛顿迭代法求解方程 在2.0附近的一个根 */ #include#includevoid main(){ double x1,x,f,f1; scanf("%lf",&x1); do { x=x1; f=x*x*x*x-3*pow(x,3)+1.5*x*x-4; f1=4*pow(x,3)-9*x*x+3*x; x1=x-f/f1; }while(fabs... 阅读全文
posted @ 2009-03-22 17:11 emanlee 阅读(7320) 评论(0) 推荐(0)
摘要: HTML 4.0 Event Attributes New to HTML 4.0 is the ability to let HTML events trigger actions in the browser, like starting a JavaScript when a user clicks on an HTML element. Below is a list of attrib... 阅读全文
posted @ 2009-03-19 22:20 emanlee 阅读(449) 评论(0) 推荐(0)
摘要: Quick reference: .Any character except newline. \.A period (and so on for \*, \(, \\, etc.) ^The start of the string. $The end of the string. \d,\w,\sA digit, word character [A-Za-z0-9_], or whit... 阅读全文
posted @ 2009-03-19 18:36 emanlee 阅读(1201) 评论(0) 推荐(0)
摘要: 正则表达式是一个描述字符模式的对象。 Javascrīpt的RegExp对象和String对象定义了使用正则表达式来执行强大的模式匹配和文本检索与替换函数的方法. 在Javascrīpt中,正则表达式是由一个RegExp对象表示的.当然,可以使用一个RegExp()构造函数来创建RegExp对象,也 阅读全文
posted @ 2009-03-19 18:35 emanlee 阅读(364) 评论(0) 推荐(0)
摘要: Format the Date The Date field displays date and time information by default. You can format it to display only the date. To format a date field Click the Design tab. Right-click the cell with ... 阅读全文
posted @ 2009-03-18 23:30 emanlee 阅读(608) 评论(0) 推荐(0)
摘要: Enable the Safari Debug menu option on Windows To enable the Safari Debug menu option, you need to find your Preferences.plist file located in %APPDATA%\Apple Computer\Safari (%APPDATA is typically C... 阅读全文
posted @ 2009-03-18 23:29 emanlee 阅读(2838) 评论(0) 推荐(0)
摘要: ================= I have tried like this.. function fnPrint() { document.getElementById('print').style.visibility='hidden'; window.all.print(); document.getElementById('print').style.... 阅读全文
posted @ 2009-03-18 23:28 emanlee 阅读(364) 评论(0) 推荐(0)
摘要: 项目测试中,客户向我们反应,某个页面请求速度特别慢,简直无法忍受。这里简单插一些情况的描述:对于一个使用人数、并发操作并不多的项目,客户不会过多的在性能上提出要求,对他们来说,多几百ms的等待时间,不会带来更多情绪。 但是,当你请求某个页面后,去泡杯茶回来,发现页面还死死的在那里,进度条不紧不慢的一点一点增长,就无法忍受了。利用Firefox的debug[ debug ?]测了一下,... 阅读全文
posted @ 2009-03-15 23:30 emanlee 阅读(472) 评论(2) 推荐(0)
上一页 1 ··· 306 307 308 309 310 311 312 313 314 ··· 341 下一页