#function show(n)
{
$('.lightBox').css({
"width":"400px",
"height":"180px"
});
$("#lightBox").css("display", "block"); //這個不知道是幹嘛的,如果沒用就刪掉吧。
//$(".lightBox_wrap").css("display", "block"); //把這句話去掉
$('#' n).css({
"display":"block"; //這裡加一句
"width":$('.lightBox').width(),
"height":$('.lightBox').height(),
"top": $(document).scrollTop() $(window).height()/2-$('.lightBox_wrap').height()/2,
"left":($(window).width()-$('.lightBox').width())/2
});
}
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");
};一種是你在函數上給個參數 function ShowDiv(show_div,bg_div,"canshu"){}
一種是用js在某個特定的位置上取得到這個值說 在 取得alt 屬性就行了
在你的函式中將 $("#MyDiv").append("你的參數加上");就可以了
為按鈕新增一個點擊事件,填出一個層,寬高都為100%;
這樣就實現了,點擊按鈕就彈出一個層。 ###
以上是如何呼叫javascript中賦值的函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!