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개
게시글 목록
| 번호 | 제목 |
|---|---|
| 1440 | |
| 1434 | |
| 1433 | |
| 1428 | |
| 1421 | |
| 1397 | |
| 1396 | |
| 1388 | |
| 1379 | |
| 1378 | |
| 1377 | |
| 1367 | |
| 1365 | |
| 1362 | |
| 1348 | |
| 1343 | |
| 1335 | |
| 1318 | |
| 1311 | |
| 1310 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기