Home > Computer Tutorials > Computer Knowledge > How to call assigned function in javascript

How to call assigned function in javascript

WBOY
Release: 2024-01-18 08:39:11
forward
1107 people have browsed it

How to call assigned function in javascript

How to call function assignment in javascript

function show(n)

{

$('.lightBox').css({

"width":"400px",

"height":"180px"

});

$("#lightBox").css("display", "block"); //I don’t know what this is for. If it’s no longer useful, delete it.

//$(".lightBox_wrap").css("display", "block"); //Remove this sentence

$('#' n).css({

"display":"block"; //Add a sentence

here

"width":$('.lightBox').width(),

"height":$('.lightBox').height(),

"top": $(document).scrollTop() $(window).height()/2-$('.lightBox_wrap').height()/2,

"left":($(window).width()-$('.lightBox').width())/2

});

}

jquery pops up a layer! Can you pass a parameter to this layer?

function ShowDiv(show_div,bg_div){

document.getElementById(show_div).style.display='block';

document.getElementById(bg_div).style.display='block' ;

var bgdiv = document.getElementById(bg_div);

bgdiv.style.width = document.body.scrollWidth;

// bgdiv.style.height = $(document).height();

$("#"" bg_div).height($(document).height());

$("#" bg_div).append("canshu");

}; One is to give a parameter to the function function ShowDiv(show_div,bg_div,"canshu"){}

One is to use js to get the value at a specific location. For example, just get the alt attribute in

Put $("#MyDiv").append("Add your parameters"); in your function

How to use js to pop up a layer by clicking a button

Add a click event to the button, fill in a layer, and the width and height are 100%;

This is achieved, click the button to pop up a layer.

The above is the detailed content of How to call assigned function in javascript. For more information, please follow other related articles on the PHP Chinese website!

source:docexcel.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template