点击空白处可以让弹出框隐藏
This commit is contained in:
parent
ad5c4052fb
commit
6b45702f8c
|
@ -2,11 +2,24 @@
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
//编辑问卷描述之后
|
//编辑问卷描述之后
|
||||||
|
var popWindow ; //弹出框的引用
|
||||||
function edit_head(){
|
function edit_head(){
|
||||||
$("#polls_description").val($("#polls_description_div").html());
|
$("#polls_description").val($("#polls_description_div").html());
|
||||||
}
|
}
|
||||||
|
$(function(){
|
||||||
|
$(document).bind('click',function(e){
|
||||||
|
if(popWindow && e.target.nodeName != 'A' && !popWindow.is(e.target) && popWindow.has(e.target).length === 0){ // Mark 1
|
||||||
|
popWindow.css('display', 'none');
|
||||||
|
}
|
||||||
|
//$("#div_"+quest_type+"_"+quest_id).css('display', 'none');
|
||||||
|
});
|
||||||
|
})
|
||||||
|
|
||||||
function chooseQuestionType(quest_type,quest_id){
|
function chooseQuestionType(quest_type,quest_id){
|
||||||
|
popWindow = $("#div_"+quest_type+"_"+quest_id);
|
||||||
|
$("#div_"+quest_type+"_"+quest_id).click(function(e){
|
||||||
|
e.stopPropagation();
|
||||||
|
});
|
||||||
$("#div_"+quest_type+"_"+quest_id).css("position", "absolute");
|
$("#div_"+quest_type+"_"+quest_id).css("position", "absolute");
|
||||||
|
|
||||||
$("#div_"+quest_type+"_"+quest_id).css("top", $("#add_"+quest_type+"_"+quest_id).offset().top+30);
|
$("#div_"+quest_type+"_"+quest_id).css("top", $("#add_"+quest_type+"_"+quest_id).offset().top+30);
|
||||||
|
|
Loading…
Reference in New Issue