首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

img 的src 传随机数, 如何写? # 坐等。

2013-11-27 
img 的src 传随机数, 怎么写? #########坐等。。!而且你这样写...有些浏览器好像不支持这种写法吧[解决办法]

img 的src 传随机数, 怎么写? ######### 坐等。。!


而且你这样写...有些浏览器好像不支持这种写法吧
[解决办法]
<IMG id="Image1" style="WIDTH: 114px; CURSOR: hand" onclick="this.src='ValidateCode.aspx?abc='+Math.random()"
height="33" alt="img 的src 传随机数, 如何写? # 坐等。" src="ValidateCode.aspx" width="114" align="top">
[解决办法]
<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">
    <title></title>
    <script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>

    <script type="text/javascript">
        $(function () {
            $("#getcode_img").attr("src", "../login/validate.aspx?t=" + Math.random());
            alert($("#getcode_img").attr("src"));
        }
        );
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <img alt="img 的src 传随机数, 如何写? # 坐等。" id="getcode_img" title="看不清请点击!" />
    </div>
    </form>
</body>
</html>

热点排行