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개
게시글 목록
| 번호 | 제목 |
|---|---|
| 1681 | |
| 1678 | |
| 1677 | |
| 1676 | |
| 1675 | |
| 1672 | |
| 1654 | |
| 1644 | |
| 1636 | |
| 1633 | |
| 1626 | |
| 1621 | |
| 1613 | |
| 1612 | |
| 1607 | |
| 1558 | |
| 1554 | |
| 1545 | |
| 1542 | |
| 1539 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기