我的一下代码在360浏览器和IE都可以正常运行,为什么在火狐就不行了?
我的购物车苹果10元雪梨30元香蕉5元榴莲50元水蜜桃10元龙眼10元总价格是:0元全选取消</body></html>...
我的购物车苹果 10元
雪梨 30元
香蕉 5元
榴莲 50元
水蜜桃 10元
龙眼 10元
总价格是:0元
全选 取消
</body>
</html> 展开
雪梨 30元
香蕉 5元
榴莲 50元
水蜜桃 10元
龙眼 10元
总价格是:0元
全选 取消
</body>
</html> 展开
4个回答
展开全部
不符合w3c规范,如果单这段实现整齐排列 以及实现全选和取消,可以仿照我这个,添加css就可以了。
<html>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8" />
<head>
<style>
#buys li{list-style-type:none;}
</style>
</head>
<body>
<div id="buys"><caption>我的购物车:</caption>
<ul>
<li><input type="checkbox" name="answer[]">苹果10元</li>
<li><input type="checkbox" name="answer[]">雪梨30元</li>
<li><input type="checkbox" name="answer[]">榴莲50元</li>
<li><input type="checkbox" name="answer[]">水蜜桃10元</li>
<li><input type="checkbox" name="answer[]">龙眼10元</li>
<div>总价格是:0元</div>
</ul>
</div>
<a href="JavaScript:aprice()">全选</a> <a href="JavaScript:nprice()">取消</a>
<script type="text/JavaScript">
var sall=document.getElementsByName("answer[]");
function aprice(){
for(var i=0;i<sall.length;i++)
sall[i].checked="true";
}
function nprice(){
for(var i=0;i<sall.length;i++)
sall[i].checked="";
}
</script>
</body>
</html>
<html>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8" />
<head>
<style>
#buys li{list-style-type:none;}
</style>
</head>
<body>
<div id="buys"><caption>我的购物车:</caption>
<ul>
<li><input type="checkbox" name="answer[]">苹果10元</li>
<li><input type="checkbox" name="answer[]">雪梨30元</li>
<li><input type="checkbox" name="answer[]">榴莲50元</li>
<li><input type="checkbox" name="answer[]">水蜜桃10元</li>
<li><input type="checkbox" name="answer[]">龙眼10元</li>
<div>总价格是:0元</div>
</ul>
</div>
<a href="JavaScript:aprice()">全选</a> <a href="JavaScript:nprice()">取消</a>
<script type="text/JavaScript">
var sall=document.getElementsByName("answer[]");
function aprice(){
for(var i=0;i<sall.length;i++)
sall[i].checked="true";
}
function nprice(){
for(var i=0;i<sall.length;i++)
sall[i].checked="";
}
</script>
</body>
</html>
展开全部
html网页可以参考W3C标准 http://www.w3school.com.cn/w3c/w3c_html.asp
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
出现这样情况,建议你把火狐浏览器先卸载,用360安全卫士清理一下它的残留文件和注册表后,重装一下。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
能不能给出你的完整的代码?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询