jsp设置主页和加入收藏

<mce:script type="text/javascript"><!-- function addBookmark() { var title = "主頁名"; var url = document.getElementById("locationPath").value; if (window.sidebar) { window.sidebar.addPanel(title, url,""); } else if( document.all ) { window.external.AddFavorite( url, title); } else if( window.opera && window.print ) { return true; } } // --></mce:script> </head> <body> <% String urls = request.getRequestURL().toString(); %> <input type="hidden" id="locationPath" value="<%=urls %>"> <table> <tr> <td> <img onclick = "this.style.behavior = 'url(#default#homepage)';this.sethomepage('<%=urls %>')" src="/JavaWeb/image/index_04.gif" onmouseover="this.src='/JavaWeb/image/index_04_over.gif'" onmouseout="this.src='/JavaWeb/image/index_04.gif'" style="cursor:hand" /> </td> <td> <img onClick="addBookmark();" src="/JavaWeb/image/index_06.gif" mce_src="JavaWeb/image/index_06.gif" onmouseover="this.src='/JavaWeb/image/index_06_over.gif'" onmouseout="this.src='/JavaWeb/image/index_06.gif'" style="cursor:hand" mce_style="cursor:hand" /> </td> </tr> </table> </body>

你可能感兴趣的:(jsp,String,function,table,url,input)