Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

batch_add.htm 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {include file="public/layout" /}
  2. <body class="bodystyle" style="background-color: rgb(255, 255, 255); overflow: auto; cursor: default; -moz-user-select: inherit;min-width: auto;padding-bottom: 0px;">
  3. <div id="append_parent"></div>
  4. <div id="ajaxwaitid"></div>
  5. <div style="min-width: auto;box-shadow:none;">
  6. <form class="form-horizontal" id="postForm" method="post">
  7. <div class="ncap-form-default">
  8. <dl class="row">
  9. <dt class="tit">
  10. <label for="word"><em>*</em>关键词列表</label>
  11. </dt>
  12. <dd class="opt" style="width: auto;">
  13. <textarea style="width:250px; height:300px;" name="word" id="word" placeholder="一行代表一个关键词"></textarea>
  14. <span class="err"></span>
  15. <p class="notic"></p>
  16. </dd>
  17. </dl>
  18. <dl class="row">
  19. <dt class="tit">
  20. <label for="searchNum">搜索次数</label>
  21. </dt>
  22. <dd class="opt" style="width: auto;">
  23. <input type="text" value="0" name="searchNum" id="searchNum" class="input-txt" autocomplete="off" onkeyup="this.value=this.value.replace(/[^\d]/g,'');" onpaste="this.value=this.value.replace(/[^\d]/g,'')">
  24. <p class="notic"></p>
  25. </dd>
  26. </dl>
  27. <dl class="row">
  28. <dt class="tit">
  29. <label for="is_hot">是否热搜</label>
  30. </dt>
  31. <dd class="opt" style="width: auto;">
  32. <label class="curpoin"><input type="radio" name="is_hot" value="1">是</label>&nbsp;&nbsp;
  33. <label class="curpoin"><input type="radio" name="is_hot" value="0" checked="checked">否</label>
  34. <span class="err"></span>
  35. <p class="notic"></p>
  36. </dd>
  37. </dl>
  38. <div class="bot">
  39. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  40. </div>
  41. </div>
  42. </form>
  43. </div>
  44. <script type="text/javascript">
  45. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  46. function checkForm(){
  47. if($('input[name=word]').val() == ''){
  48. showErrorMsg('关键词列表不能为空!');
  49. $('input[name=word]').focus();
  50. return false;
  51. }
  52. layer_loading('正在处理');
  53. $.ajax({
  54. type : 'post',
  55. url : "{:url('Search/batch_add', ['_ajax'=>1])}",
  56. data : $('#postForm').serialize(),
  57. dataType : 'json',
  58. success : function(res){
  59. layer.closeAll();
  60. if(res.code == 1){
  61. var _parent = parent;
  62. _parent.layer.close(parentObj);
  63. _parent.layer.msg(res.msg, {shade: 0.1, time: 1000}, function(){
  64. _parent.window.location.reload();
  65. });
  66. }else{
  67. showErrorMsg(res.msg);
  68. }
  69. },
  70. error: function(e){
  71. layer.closeAll();
  72. layer.alert(e.responseText, {icon: 5, title:false});
  73. }
  74. });
  75. }
  76. </script>
  77. <script type="text/javascript">
  78. $(document).ready(function(){
  79. $('#think_page_trace_open').css('z-index', 99999);
  80. });
  81. </script>
  82. </body>
  83. </html>