[在线讨论]wince下能否支持JavaScript?
如题,var myTextField=document.getElementById("myText");
这个没法实现。要是能实现该如何做?
看了yudong54的回帖(http://topic.csdn.net/u/20091116/14/1b2cc357-3aea-4329-b527-ab7828142f8f.html?26416)说要打08年的补丁和09年一月份的补丁即可支持JavaScript。但是我打了以上的补丁,还是无法支持JavaScript。
自己做个沙发。。。。。。。
R3开始支持
http://msdn.microsoft.com/en-us/library/ee487662.aspx
Features
GoAhead WebServer leverages Active Server Pages (note that ASP.NET is not supported), embedded JavaScript, and in-process CGI forms processing to deliver highly efficient and effective dynamic Web page creation. WebServer also includes support for SSL, Digest Access Authentication, User Management, and standard CGI.
Embedded JavaScript is a strict subset of JavaScript, scaled down to incur a smaller memory footprint. Embedded JavaScript is a very effective way to create dynamic Web pages without having to recompile whenever you wish to change the data shown in the Web pages. The JavaScript is embedded in the Web page, using Active Server Pages, and is run by the GoAhead WebServer before the Web page is sent to the user's browser. The resulting page is small and transmits quickly to the user’s browser even over slow modem links. The JavaScript 1.3 implementation allows the creation of objects to represent device data for easy scripting access.
GoAhead WebServer uses
相关问答:
<form id="form1" runat="server">
<div>
<script type="text/javascript">
function oo(a){
document.getEleme ......
怎么用javascript控制gridview里的RadioButton
对 gridview findcontrol ,找出RadioButton,
然后,对RadioButton ,的Attribute 增加 JS就可以了。
C# code:
for (int i = 0; i < gd ......
页面载入的时候使用 如下代码取得一个属性并显示在jsp中
Java code:
<td id="temp1">
<bean:write name="Form" property="years" scope="request"/>
......
JScript code:
<html>
<head>
<script type="text/javascript">
window.onload=function(){
var a = document.getElementsByTagName("a");
for(var i=0; i& ......
<script language="javascript">
function click() {
if (event.button==2) { //button==1为左键
alert('点击查看文章详细内容!')
}
}
document.onmousedown=click
</script>
以上 ......