RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:9:30-18:00
你可能遇到了下面的问题
关闭右侧工具栏
我在CSDN回答的ASP和Javascript问题集锦
  • 作者:zhaozj
  • 发表时间:2020-12-23 10:36
  • 来源:未知

来的WEB区有两年了(大部分都在Javascript区),一直没时间整理自已在回答的比较好的问题,大部分讨论主题页面都已经不存在了,今天有时间,现收集整理了一些认为比较好的常见问题。

ASP问题、Javascript问题:

Q: javascript数组的长度不能超过多大?

see MSDN:---------------If only one argument is passed to the Array constructor, and the argument is a number, it must be an unsigned 32-bit integer (< approximately four billion). That value then becomes the size of the array

---------------如果仅用一个参数构造这个数组,且这个参数是一个数字,它必须是一个无符号32位整型(小于大约40亿),因而这个数字成为这数组的大小。

Q: 有沒有測試客戶端系統的函數,比如用戶所使用的系統 是繁體 系統 還是簡體 系統,或者測試客戶端的區域設置的函數!!

我只知道除了在Asp中用Request.ServerVariables得到客户端浏览器信息,还可以用JScript的navigator对象得到系统/版本等

详见MSDN

Q:

<table id="test"><tr><td><input></td><td><input></td></tr></table>

我现在想在test中在增加一个tr串该怎么弄?我用了createElement 怎么不行?

<table id="test"><tr><td><input></td><td><input></td></tr></table><input type=button value="insert" οnclick="fnAddTr()"><script>function fnAddTr(){  var oRow = test.insertRow();  var oCell = oRow.insertCell();  oCell.innerText = "insert row";}</script>

Q:在javascript中命名分组的正则表达式是怎样写的,然后怎样利用命名替换或取出该命名级匹配的值?

str = "123456789324";alert(str.replace(/(/d{4})(/d{3})(/d{5})/g, "$1-$2-$3"));

Q:我怎么显示不出图象?大侠帮我看看我的代码:

<!--#include file="../sql.asp"--><% id=request("id")  server.CreateObject("ADODB.Recordset") ssql="select img from mynews where id='" & id &"'" rsPic.open ssql,conn,3,3 Response.ContentType = "image/*"  Response.BinaryWrite rsPic("img").getChunk(7500000)  'response.BinaryWrite rs.fields("LOGO_IMG") response.write("end of the file") rsPic.close  set rsPic=nothing %>