opera浏览器可以支持wml但是好像不支持wmlscript,都有哪些浏览器支持wmlscript,求解决

解决方案 »

  1.   

    这个标准wmlscript已经很老了。现在的wap浏览器基本上都不会支持了。
      

  2.   

    那就是说现在wap开发都不用wmlscript了吗?
      

  3.   

    现在都用JQUERY了
    传送门
      

  4.   

    我本身是做.net web开发的,但是现在要做一个wap网站,用vs2005开发,但是经理不让用vs里面的mobile控件,让我用wml写
    <%@ Page Language="C#" AutoEventWireup="true" ContentType="text/vnd.wap.wml"  CodeFile="User_Login.aspx.cs" Inherits="_Default" %>
    <wml>
    <card id="cardLogin" title="登录">
    <table columns="3" style="font-size:12px;">
    <tr>
    <td style=" width:50px;">账户</td>
    <td colspan="2"><input name="txtName" type="text" value="" /></td>
    </tr>
    <tr>
    <td>密码</td>
    <td colspan="2"><input name="txtPassword" type="password" value="" /></td>
    </tr>
    <tr>
    <td colspan="3">
    <anchor>登录<go href="ValidateLogin.aspx" method="post">
        <postfield name="logName" value="$(txtName)"/>
                            <postfield name="password" value="$(txtPassword)" />
    </go></anchor></td>
    </tr>
    <tr>
    <td><anchor>修改密码<go href="ModifyPassword.aspx" method="post">
        <postfield name="mobileNo" value="$(txtName)"/>
        <postfield name="type" value="init"/>
    </go></anchor></td>
    <td><a href="#">投资咨询</a></td>
    <td><a href="#">注册指南</a></td>
    </tr>
    </table>
    </card>
    </wml>
    这样写之后就可以运行wml标签了,但是没法用脚本语言,在wml标签上面用<script></script>运行之后就提示“XML 解析失败”。你说的jquery mobile不也要这么引用吗?所以我现在想问下在vs里面用wml开发wap怎么用你说的jquery mobile