當前位置:首頁 » 操作系統 » 投票html5源碼

投票html5源碼

發布時間: 2022-07-13 04:45:18

Ⅰ 找一點html5寫的源代碼案例,供初學者學習

首先准備好11張圖片,放到img文件夾下供調用

Ⅱ 一個投票系統的源碼

一個投票程序(vote.asp)
http://www.itlove.net/Article/1/136/408/2005/20051123117197.html

asp代碼站
http://www.dai-ma.com/sort/Catalog187/187_5.htm

Ⅲ 請問誰能告訴我一段投票代碼HTML的!

你要什麼,說清楚。是radio和提交按鈕這種效果,還是這樣的排版,

實現radio效果代碼兩種,給你參考

1、

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>留言板頭像選擇代碼-懶人圖庫</title>
<style type="text/css">
.on{margin:5px;border:1px solid #F60;filter:alpha(Opacity=100)}
.off{margin:5px;border:1px solid #CCC;filter:alpha(Opacity=20)}
</style>
</head>

<body>
<script language="javascript">
function aa(a, b, c) {
document.form1.img.value = a;
document.getElementById("touxiang").getElementsByTagName("img")[a - 1].className = "on";
document.getElementById("touxiang").getElementsByTagName("img")[b - 1].className = "off";
document.getElementById("touxiang").getElementsByTagName("img")[c - 1].className = "off";
}
function Check(x) {
for (i = 1; i <= 1; i++) document.all.img.value = x
}
</script>

<div id="touxiang">
<a href="#"><img border="0" src="http://www.lanrentuku.com/down/js/images/12625057550.gif" name=01 onclick=aa(1,2,3,4);Check(this.name,"") class="off"></a>
<a href="#"><img border="0" src="http://www.lanrentuku.com/down/js/images/12625057551.gif" name=02 onclick=aa(2,1,3,4);Check(this.name,"") class="off"></a>
<a href="#"><img border="0" src="http://www.lanrentuku.com/down/js/images/12625057552.gif" name=03 onclick=aa(3,1,2,4);Check(this.name,"") class="off"></a>

<form name="form1">
<input type=text name=img value="01">
</form>
<p>用圖片代替Radio框選擇value值,效果還不錯,可以用作留言板圖像選擇按鈕。</p>
<p>filter濾鏡在Firefox下無效,但border起作用~</p>
<p>演示:<a target="_blank" href="http://www.maitianquan.com/plus/guestbook.php">http://www.maitianquan.com/plus/guestbook.php</a></p>
<p>作者:<a href="http://www.lanrentuku.com/" target="_blank">西西</a></p> 尊重他人勞動,轉載請保留出處!
<p>查找更多代碼,請訪問:<a href="http://www.lanrentuku.com/" target="_blank">懶人圖庫</a></p>

</body>
</html>

2、到網路搜索 [jquery自定radio樣式表單美化],有很多源碼下載。

Ⅳ 跪求html簡潔投票系統源碼,我已經在網上找了6天了,腦殼青痛!

六天,看來你夠苦的.幫你一下,用application做的,不知你是否滿意,
首先在你網站根目錄下新建一個名為:Global.asa的文件,然後把下列代碼貼上去:
<script language="vbscript" runat="server">
Sub Application_OnStart
application("yes")=0
application("no")=0
End Sub
</script>

然後再建一個投票的ASP文件,內容:
<style type="text/css">
<!--
.Vote {
height: 15px;
width: 200px;
border: 1px solid #0033FF;
}
#cYes {
background-color: #FF6600;
height: 15px;
width: 100px;
}
#cNo {
background-color: #FF6600;
height: 15px;
width: 100px;
}
-->
</style>
<form action="" method="post">
做一個投票系統難嗎?<br />
<input name="yes" type="radio" value="yes" onclick="if (this.checked==true) no.checked=false;" />贊成<br />
<input name="no" type="radio" value="no" onclick="if (this.checked==true) yes.checked=false;"/>反對<br />
<input name="投票" type="submit" value="投票" />
</form>
<%
nyes=0
nNo=0
'如果想重新計票,用下面四行
'application.lock()
'application("yes")=application("yes")+1
'application("no")=application("no")+1
'application.unlock()

count=application("yes")+application("no")
if count<>0 then
nyes=int(application("yes")*200/count)
nNo=int(application("no")*200/count)
end if

sYes=Request.form("yes")
sNo=Request.form("no")
act= Request.form("投票")
if act="投票" Then
if sYes="yes" Then
application.lock()
application("yes")=application("yes")+1
application.unlock()
Else
if sNo="no" then
application.lock()
application("no")=application("no")+1
application.unlock()
end if
End if
'圖形化顯示投票結果
count=application("yes")+application("no")
if count<>0 then
nyes=int(application("yes")*200/count)
nNo=int(application("no")*200/count)
end if
end if
%>

贊成:<%=application("yes")%>票
<div class="Vote" ><div ID="cYes" neme="cYes" style="width:<%=nyes%>px;"></div></div>
反對::<%=application("no")%>票
<div class="Vote" ><div ID="cNo" neme="cNo" style="width:<%=nNo%>px;"></div></div>

Ⅳ 如何獲取HTML5源碼

1是用chrome直接訪問瀏覽器。
2是用手機USB鏈接電腦,開啟開發者模式,手機端安裝chrome並開啟開發者模式訪問頁面,PC端chrome安裝插件ADB Plugin,訪問localhost:****,用chrome開發者工具調試。

Ⅵ 投票網頁源代碼

用html做不出來的,得需要動態網頁語言,如php,asp等。

Ⅶ 網站投票系統源代碼(java web)

http://www.onegreen.net/code/HTML/10633.html 你看看這個行不行 如果行的話 請採納

Ⅷ 投票系統源碼

http://www.moon-soft.com/download/sort/51_1.htm
共16個,保你滿意。自己挑吧,別忘了給我份哦。

Ⅸ html代碼 投票界面 如何製作

前台的話你自己做一個漂亮一點的投票版塊,實現用javascript或者jquery實現,應該就可以了。並不需要保存到資料庫

Ⅹ 網站投票系統源碼

你加我的QQ我給你一個免費的投票的QQ:873433309

熱點內容
armlinux命令 發布:2025-01-23 00:01:08 瀏覽:134
戰地4亞洲伺服器為什麼被攻擊 發布:2025-01-22 23:45:42 瀏覽:668
javascript反編譯 發布:2025-01-22 23:37:57 瀏覽:429
夏天來了你的巴氏奶存儲對嗎 發布:2025-01-22 23:37:56 瀏覽:203
求最大值c語言 發布:2025-01-22 23:22:35 瀏覽:247
一鍵清理系統腳本 發布:2025-01-22 23:21:10 瀏覽:59
防疫宣傳腳本 發布:2025-01-22 23:21:05 瀏覽:632
編譯程序編譯後是什麼語言 發布:2025-01-22 23:20:08 瀏覽:368
電腦文件夾設密碼 發布:2025-01-22 23:17:21 瀏覽:7
anyconnect伺服器地址2018 發布:2025-01-22 23:05:56 瀏覽:530