using href links inside

后端 未结 8 1752
半阙折子戏
半阙折子戏 2020-11-22 09:02

I have the following HTML code:


  
  
  

jQuery

$("select").click(function() {
  var open = $(this).data("isopen");
  if(open) {
    window.location.href = $(this).val()
  }
  //set isopen to opposite so next time when use clicked select box
  //it wont trigger this event
  $(this).data("isopen", !open);
});

提交回复
热议问题