我有一个像这样的javascript代码:
function share22() {
if(!isOneChecked('choice')) {
alert('Please select the file..');
return false;
}
document.getElementById('share_popup').style.display="block";
}
我想将此对话框转换为简单的jquery,以便我可以编辑标题。
答案 0 :(得分:3)
试试这个
function share22() {
if(!isOneChecked('choice')) {
alert('Please select the file..');
return false;
}
$("#share_popup").css("display", "block");
}
答案 1 :(得分:1)
考虑if(!isOneChecked('choice')) {
正在检查复选框是否已选中
function share22() {
if ($(".choice").is(":not(:checked)")){
alert('Please select the file..');
return false;
}
$('#share_popup').show();
}
答案 2 :(得分:0)
function share22() {
if(!isOneChecked('choice')) {
alert('Please select the file..');
return false;
}
$('#share_popup').css("display","block");
}