123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <style type='text/css'>
- .province { float:left; position:relative;width:150px; height:35px; line-height:35px;border:1px solid #fff;}
- .province:hover { border:1px solid #f7e4a5;border-bottom:1px solid #fffec6; background:#fffec6;}
- .province .cityall { margin-top:10px;}
- .province ul { list-style: outside none none;position:absolute;padding:0;background:#fffec6;border:1px solid #f7e4a5;display:none;
- width:auto; width:300px; z-index:999999;left:-1px;top:32px;}
- .province ul li { float:left;min-width:60px;margin-left:20px; height:30px;line-height:30px; }
- </style>
- <div id="modal-areas" class="modal fade" tabindex="-1">
- <div class="modal-dialog" style='width: 920px;'>
- <div class="modal-content">
- <div class="modal-header"><button aria-hidden="true" data-dismiss="modal" class="close" type="button">×</button><h3>选择区域</h3></div>
- <div class="modal-body" style='height:280px;;' >
-
- {loop $areas['province'] $value}
- {if $value['@attributes']['name']=='请选择省份'}{php continue;}{/if}
- <div class='province'>
- <label class='checkbox-inline' style='margin-left:20px;'>
- <input type='checkbox' class='cityall' style='margin-top:12px;' /> {php echo $value['@attributes']['name']}
- <span class="citycount" style='color:#ff6600'></span>
- </label>
- {if count($value['city'])>0}
- <ul>
- {loop $value['city'] $c}
- <li>
- <label class='checkbox-inline' >
- <input type='checkbox' class='city' style='margin-top:8px;' city="{php echo $c['@attributes']['name']}" /> {php echo $c['@attributes']['name']}
- </label>
- </li>
- {/loop}
- </ul>
- {/if}
- </div>
- {/loop}
-
- </div>
- <div class="modal-footer">
- <a href="javascript:;" id='btnSubmitArea' class="btn btn-success" data-dismiss="modal" aria-hidden="true">确定</a>
- <a href="javascript:;" class="btn btn-default" data-dismiss="modal" aria-hidden="true">关闭</a>
- </div>
- </div>
- </div>
- </div>
- <script language='javascript'>
- $(function(){
-
- $('.province').mouseover(function(){
- $(this).find('ul').show();
- }).mouseout(function(){
- $(this).find('ul').hide();
- });
-
- $('.cityall').click(function(){
- var checked = $(this).get(0).checked;
- var citys = $(this).parent().parent().find('.city');
- citys.each(function(){
- $(this).get(0).checked = checked;
- });
- var count = 0;
- if(checked){
- count = $(this).parent().parent().find('.city:checked').length;
- }
- if(count>0){
- $(this).next().html("(" + count + ")") ;
- }
- else{
- $(this).next().html("");
- }
- });
- $('.city').click(function(){
- var checked = $(this).get(0).checked;
- var cityall = $(this).parent().parent().parent().parent().find('.cityall');
-
- if(checked){
- cityall.get(0).checked = true;
- }
- var count = cityall.parent().parent().find('.city:checked').length;
- if(count>0){
- cityall.next().html("(" + count + ")") ;
- }
- else{
- cityall.next().html("");
- }
- });
-
- });
-
- function clearSelects(){
- $('.city').attr('checked',false).removeAttr('disabled');
- $('.cityall').attr('checked',false).removeAttr('disabled');
- $('.citycount').html('');
- }
- function editArea(btn){
- current = $(btn).attr('random');
- clearSelects();
- var old_citys = $(btn).prev().val().split(';');
-
-
- $('.city').each(function(){
- var parentcheck = false;
- for(var i in old_citys){
- if(old_citys[i]==$(this).attr('city')){
- parentcheck = true;
- $(this).get(0).checked = true;
- break;
- }
- }
- if(parentcheck){
- $(this).parent().parent().parent().parent().find('.cityall').get(0).checked= true;
- }
- });
-
- $("#modal-areas").modal();
- var citystrs = '';
- $('#btnSubmitArea').unbind('click').click(function(){
- $('.city:checked').each(function(){
- citystrs+= $(this).attr('city') +";";
- });
- $('.' + current + ' .cityshtml').html(citystrs);
- $('.' + current + ' .citys').val(citystrs);
- })
- var currents = getCurrents(current);
- currents = currents.split(';');
- var citys = "";
- $('.city').each(function(){
- var parentdisabled =false;
- for(var i in currents){
- if(currents[i]!='' && currents[i]==$(this).attr('city')){
- $(this).attr('disabled',true);
- $(this).parent().parent().parent().parent().find('.cityall').attr('disabled',true);
- }
- }
-
- });
- }
-
- function selectAreas(){
- clearSelects();
- var old_citys = $('#areas').html().split(';');
-
-
- $('.city').each(function(){
- var parentcheck = false;
- for(var i in old_citys){
- if(old_citys[i]==$(this).attr('city')){
- parentcheck = true;
- $(this).get(0).checked = true;
- break;
- }
- }
- if(parentcheck){
- $(this).parent().parent().parent().parent().find('.cityall').get(0).checked= true;
- }
- });
-
- $("#modal-areas").modal();
- var citystrs = '';
- $('#btnSubmitArea').unbind('click').click(function(){
- $('.city:checked').each(function(){
- citystrs+= $(this).attr('city') +";";
- });
- $('#areas').html(citystrs);
- $("#selectedareas").val(citystrs);
- })
-
- }
- </script>
|