我有一个表单中的按钮,单击该按钮会将变量发送到 javascript 函数。当变量等于“链接”时,我想调用一个名为 makeLink() 的 jquery 函数。
这就是我所拥有的:
function getText(change)
{
if(change == "link")
{
//call jquery function called makeLink()
}
}
这是我的 jquery 函数,它创建一个带有表单的模式弹出窗口:
$(document).ready(function(){
function makeLink() {
if ($("#makeALinkModalPopup").is(":hidden")){
$("#makeALinkModalPopup").fadeIn("slow");
$("#backgroundPopup").css({
"height": document.documentElement.offsetHeight
});
$("#backgroundPopup").css({"opacity": "0.7"});
$("#backgroundPopup").fadeIn("slow");
}
}
});
谢谢你的帮助。