如題 我想設計個顯示歌曲內容的js 構想大概是這樣的
js
function openwindow(url,name,iWidth,iHeight)
{
var url; //網頁位置;
var name; //網頁名稱;
var iWidth; //視窗的寬度;
var iHeight; //視窗的高度;
var iTop = (window.screen.availHeight-30-iHeight)/2; //視窗的垂直位置;
var iLeft = (window.screen.availWidth-10-iWidth)/2; //視窗的水平位置;
window.open(url,name,'height='+iHeight+',,innerHeight='+iHeight+',width='+iWidth+',innerWidth='+iWidth+',top='+iTop+',left='+iLeft+',status=no,location=no,status=no,menubar=no,toolbar=no,resizable=no,scrollbars=no');
}
function detail_call()
{
var deteal_html=""
//用於顯示內容的js(html code)
openwindow(deteal_html,'',800,400)
}
html
<a herf="#" onclick="detail_call()"></a>
可是我不曉得要怎樣在新視窗顯示js的內容
看樣子windows.open()似乎無法滿足我了 看其他網站好像都是用prototype的div來達到同樣效果 而且沒有網址列那些的 我想換成那樣的呈現方式
在查閱了各大網站的版面後終於製作出個讓我滿意的版面了
結合了jquery css3 html等 具備彈窗特效且可隨內容自動縮放
在不久之前已順利完成這功能了