10% 라는 체크 박스를 선택하면
비회원가격 = 시중가격 x 0.9
회원가격 = 시중가격 x 0.8
특별회원가격 = 시중가격 x 0.7
로 설정하는 코드입니다.
adm/shop_admin/itemform.php 를 아래와 같이 수정하십시오.
<td>
<input type=text class=ed name=it_cust_amount size=8 value='<?=$it[it_cust_amount]?>' style='text-align:right;'>
<input type=checkbox id='dc10'>10%
<script>
$(function() {
$('#dc10').click(function() {
if (!this.checked) return;
<input type=text class=ed name=it_cust_amount size=8 value='<?=$it[it_cust_amount]?>' style='text-align:right;'>
<input type=checkbox id='dc10'>10%
<script>
$(function() {
$('#dc10').click(function() {
if (!this.checked) return;
var cust_amount = parseInt($("[name='it_cust_amount']").val());
$("[name='it_amount']").val(parseInt(cust_amount * 0.9));
$("[name='it_amount2']").val(parseInt(cust_amount * 0.8));
$("[name='it_amount3']").val(parseInt(cust_amount * 0.7));
});
});
</script>
</td>
$("[name='it_amount2']").val(parseInt(cust_amount * 0.8));
$("[name='it_amount3']").val(parseInt(cust_amount * 0.7));
});
});
</script>
</td>
댓글 3개
게시글 목록
| 번호 | 제목 |
|---|---|
| 1790 | |
| 1788 | |
| 1786 | |
| 1782 | |
| 1780 | |
| 1778 | |
| 1767 | |
| 1762 | |
| 1754 | |
| 1748 | |
| 1739 | |
| 1736 | |
| 1735 | |
| 1731 | |
| 1717 | |
| 1712 | |
| 1704 | |
| 1700 | |
| 1696 | |
| 1682 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기