摘要: javascript 中 escape,encodeURI 区别? js对文字进行编码涉及3个函数:escape,encodeURI,encodeURIComponent,相应3个解码函数:unescape,decodeURI,decodeURIComponent 1、 传递参数时需要使用encodeURIComponent,这样组合的url才不会被#等特殊字符截断。 ... 阅读全文
posted @ 2009-02-07 21:36 编程小小生 阅读(273) 评论(0) 推荐(0) 编辑
摘要: me point or the other, we as ASP.NET developers, have faced the requirement of reading and writing images to the database. We have seen loads of articles floating on the internet which discusses about... 阅读全文
posted @ 2009-02-07 14:47 编程小小生 阅读(729) 评论(0) 推荐(0) 编辑
摘要: In this article, we will see how to pass javascript values on postback and then access these values in your server side code. This article will primarily showcase two techniques of doing so. One usin... 阅读全文
posted @ 2009-02-07 14:11 编程小小生 阅读(188) 评论(0) 推荐(0) 编辑
摘要: If you have used Hotmail or any other similar email client, you might have observed that we have the option of selecting multiple rows (using the checkbox provided) and perform a set of operations on... 阅读全文
posted @ 2009-02-07 13:20 编程小小生 阅读(1203) 评论(2) 推荐(0) 编辑
摘要: 先写个行操作方向键的 HTML code ID NAME 1 a... 阅读全文
posted @ 2009-02-07 01:26 编程小小生 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 1.document.write(""); 输出语句2.JS中的注释为//3.传统的HTML文档顺序是:document->html->(head,body)4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document)5.得到表单中元素的名称和值:document.getElementById("表单中元素的ID号")... 阅读全文
posted @ 2009-02-07 00:23 编程小小生 阅读(229) 评论(0) 推荐(0) 编辑