採用獨自開發 RWD Bo-Blog插件 對應電腦版與手機版網頁。一次上架多版本對應、顯示迅速方便。
April 12, 2015
同時秀出價格
同時秀出價格
CSS (head)
/*隱藏區塊用*/
.box{display: none;}
/*秀出區塊用*/
.bS01{}
.bS02{}
.bS03{}
/*區塊範圍指定*/
.bBW{}
.box{display: none;}
/*秀出區塊用*/
.bS01{}
.bS02{}
.bS03{}
/*區塊範圍指定*/
.bBW{}
JavaScript (head)
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('input[type="radio"]').click(function(){
if($(this).attr("value")=="bOne"){
$(".box").hide();
$(".bS01").show();
}
if($(this).attr("value")=="bTwo"){
$(".box").hide();
$(".bS02").show();
}
});
});
</script>
<script type="text/javascript">
$(document).ready(function(){
$('input[type="radio"]').click(function(){
if($(this).attr("value")=="bOne"){
$(".box").hide();
$(".bS01").show();
}
if($(this).attr("value")=="bTwo"){
$(".box").hide();
$(".bS02").show();
}
});
});
</script>