这是一个右键弹出的frame 但是它的边框 被显示别的内容的模块给当住了,我想知道如何 让我这个frame总在别的内容模块最前面,现在我这个frame内容能显示出来,
但是 边框 包括标题框都被一个别的内容的模块挡住了,虽然无所谓,但是很不美观,我想让大家帮我解决了,这个是我目前提出的最难的问题了. 呵呵 大家尽力.
$('#jishijiaoyi').click(function()
{
document.getElementById('layer').style.width="500px";
document.getElementById('layer').style.height="280px";
document.getElementById('layer_content').style.width="490px";//10
document.getElementById('layer_content').style.height="240px";//40
var send_type = document.getElementById('sType').value;
if(send_type=="1"||send_type=="2"){
  var account =document.getElementById('link_account').value;
  var currName = document.getElementById('cName').value;
  var bPrice = document.getElementById('bPrice').value;
  var sPrice = document.getElementById('sPrice').value;

document.getElementById("layer_handle").innerHTML="即时交易";
document.getElementById("dialog1").setAttribute("src","rt_transaction.jsp?account="+account+"&currName="+currName+"&bPrice="+bPrice+"&sPrice="+sPrice+"&tradeFlag="+send_type);

$("#layer").show();}


});