-1

我有一个这样的javascript代码:

function share22() {
    if(!isOneChecked('choice')) {
        alert('Please select the file..');
        return false;
        }
       document.getElementById('share_popup').style.display="block";
       }

我想将此对话框转换为简单的 jquery,以便我可以编辑标题。

4

3 回答 3

3

尝试这个

   function share22() {
      if(!isOneChecked('choice')) {
       alert('Please select the file..');
       return false;
      }
      $("#share_popup").css("display", "block");
   }
于 2013-03-19T06:44:44.913 回答
1

考虑if(!isOneChecked('choice')) {检查复选框是否选中

  function share22() {
     if ($(".choice").is(":not(:checked)")){
       alert('Please select the file..');
       return false;
     }
     $('#share_popup').show();
   }
于 2013-03-19T06:47:07.513 回答
0
function share22() {
    if(!isOneChecked('choice')) {
        alert('Please select the file..');
        return false;
        }
       $('#share_popup').css("display","block");
       }
于 2013-03-19T06:45:14.367 回答