portal html css js resource

organization-brow.js 499B

1234567891011121314151617181920
  1. $(function(){
  2. //loginStatus();
  3. var id = GetQueryString("orgId");
  4. console.log(id);
  5. $.get("/ajax/org/" + id, function($data) {
  6. if ($data.success)
  7. {
  8. console.log($data);
  9. $info=$data.data;
  10. $(".named").text($info.name);
  11. }
  12. })
  13. $("#hsearch").on("click",function (){
  14. var searchContent = $("#hsearchContent").val();
  15. location.href = "search.html?searchContent="+searchContent;
  16. });
  17. })