其次,目前淘宝支持内部链接和部链接文字,但不支持文字图片链接,也就是说,能在产品描述中显示你要外部链接文字地址,但点击无效,需复制放到地址栏中访问;
最后,淘宝像产品描述,店铺描述基本是可以支持链接文字和大部分HTML CSS JS的,但不能外部链接,这是安全措施;
仿淘宝商城源码的话,一般是带php或者asp后端程序以及数据库的;要建立数据库,搭建环境等;不仅仅是html前端文件;
如果只是前端文件html的话,直接找到文件目录里面的index.html或者Default.html文件打开就好了;
<style>#container
{
width:156px
height:30px
padding: 0
}
.made
{
width:50px
height:30px
margin:0
float: left
text-align: center
line-height: 30px
font-size: 30px
border: 1px solid #ccc
cursor:pointer
font-weight: bold
}
</style>
<script>
window.onload=function()
{
var oDiv=document.getElementById('container')
var aDiv=oDiv.getElementsByTagName('div')
aDiv[2].onclick=function()
{
aDiv[1].innerHTML=parseInt(aDiv[1].innerHTML)+1
}
aDiv[0].onclick=function()
{
if(parseInt(aDiv[1].innerHTML)<=0)
{
aDiv[1].innerHTML=0
}
else
{
aDiv[1].innerHTML=parseInt(aDiv[1].innerHTML)-1
}
}
}
</script>
</head>
<body>
<div id="container">
<div class="made">-</div>
<div class="made">3</div>
<div class="made">+</div>
</div>
</body>
</html>
大概是这样吧
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)