123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php defined('InShopNC') or exit('Access Invalid!');?>
- <div class="page">
- <div class="fixed-bar">
- <div class="item-title">
- <h3>友情连接</h3>
- <ul class="tab-base">
- <li><a href="index.php?act=link&op=link" ><span><?php echo $lang['nc_manage'];?></span></a></li>
- <li><a href="index.php?act=link&op=link_add" ><span><?php echo $lang['nc_new'];?></span></a></li>
- <li><a href="JavaScript:void(0);" class="current"><span><?php echo $lang['nc_edit'];?></span></a></li>
- </ul>
- </div>
- </div>
- <div class="fixed-empty"></div>
- <form id="link_form" enctype="multipart/form-data" method="post">
- <input type="hidden" name="form_submit" value="ok" />
- <input type="hidden" name="link_id" value="<?php echo $output['link_array']['link_id'];?>" />
- <input type="hidden" name="old_link_pic" value="<?php echo $output['link_array']['link_pic'];?>" />
- <table class="table tb-type2">
- <tbody>
- <tr class="noborder">
- <td colspan="2" class="required"><label class="validation" for="link_title">合作伙伴:</label></td>
- </tr>
- <tr class="noborder">
- <td class="vatop rowform"><input type="text" value="<?php echo $output['link_array']['link_title'];?>" name="link_title" id="link_title" class="txt"></td>
- <td class="vatop tips"><?php echo $lang['link_add_name'];?></td>
- </tr>
- <tr>
- <td colspan="2" class="required"><label class="validation" for="link_url">合作连接:</label></td>
- </tr>
- <tr class="noborder">
- <td class="vatop rowform"><input type="text" value="<?php echo $output['link_array']['link_url'];?>" name="link_url" id="link_url" class="txt"></td>
- <td class="vatop tips"><?php echo $lang['link_add_href'];?></td>
- </tr>
- <tr>
- <td colspan="2" class="required"><label for="">图片标识:</label></td>
- </tr>
- <tr class="noborder">
- <td class="vatop rowform"><span class="type-file-show"><img class="show_image" src="<?php echo ADMIN_TEMPLATES_URL;?>/images/preview.png">
- <div class="type-file-preview"><img src="<?php echo UPLOAD_SITE_URL.'/'.(ATTACH_PATH.'/common/'.$output['link_array']['link_pic']);?>"></div>
- </span> <span class="type-file-box">
- <input name="link_pic" type="file" class="type-file-file" id="link_pic" size="30">
- </span></td>
- <td class="vatop tips"><?php if($output['link_array']['link_pic'] != ''){ ?>
- <?php } else { echo "<span class='red'>".$lang['link_add_tosign']."</span>"; } ?></td>
- </tr>
- <tr>
- <td colspan="2" class="required"><label for="link_sort"><?php echo $lang['nc_sort'];?>:</label></td>
- </tr>
- <tr class="noborder">
- <td class="vatop rowform"><input type="text" value="<?php echo $output['link_array']['link_sort'];?>" name="link_sort" id="link_sort" class="txt"></td>
- <td class="vatop tips"><?php echo $lang['link_add_sort_tip'];?></td>
- </tr>
- <tfoot>
- <tr class="tfoot">
- <td colspan="15"><a href="JavaScript:void(0);" class="btn" id="submitBtn"><span><?php echo $lang['nc_submit'];?></span></a></td>
- </tr>
- </tfoot>
- </table>
- </form>
- </div>
- <script>
- //按钮先执行验证再提交表单
- $(function(){$("#submitBtn").click(function(){
- if($("#link_form").valid()){
- $("#link_form").submit();
- }
- });
- });
- //
- $(document).ready(function(){
- $('#link_form').validate({
- errorPlacement: function(error, element){
- error.appendTo(element.parent().parent().prev().find('td:first'));
- },
- success: function(label){
- label.addClass('valid');
- },
- rules : {
- link_title : {
- required : true
- },
- link_url : {
- required : true,
- url : true
- },
- link_sort : {
- number : true
- }
- },
- messages : {
- link_title : {
- required : '<?php echo $lang['link_add_title_null'];?>'
- },
- link_url : {
- required : '<?php echo $lang['link_add_url_null'];?>',
- url : '<?php echo $lang['link_add_url_wrong'];?>'
- },
- link_sort : {
- number : '<?php echo $lang['link_add_sort_int'];?>'
- }
- }
- });
- });
- </script>
- <script type="text/javascript">
- $(function(){
- var textButton="<input type='text' name='textfield' id='textfield1' class='type-file-text' /><input type='button' name='button' id='button1' value='' class='type-file-button' />"
- $(textButton).insertBefore("#link_pic");
- $("#link_pic").change(function(){
- $("#textfield1").val($("#link_pic").val());
- });
- });
- </script>
|