將其設置為主頁的方法是:
& lta href = # onClick = " this . style . behavior = ' URL(# default # home page)';this . set home page(' ');event.returnValue = false"& gt設為主頁
其中是要設置為主頁的網址。
如果要將當前網頁的地址設置為主頁,可以使用以下方法:
& lta href = # onClick = " this . style . behavior = ' URL(# default # home page)';this . set home page(document . location . href);event.returnValue = false"& gt設為主頁
上面的方法使用javascript的document.location對象的href屬性來獲取當前網頁的完整路徑。
同樣,如果只想將當前網頁所在的域名地址設置為主頁,只需將document.location.href改為document.location.host即可,示例如下:
& lta href = # onClick = " this . style . behavior = ' URL(# default # home page)';this . set home page(document . location . host);event.returnValue = false"& gt設為主頁
添加到收藏夾的實現方法是:
& lta href = " JavaScript:window . external . add favorite(',' click design ')" >加入收藏
以此類推,就像上面設置主頁的方法壹樣,如果妳想將當前網頁添加到妳的收藏中,而當前網頁的網址又不確定,可以采用以下方法:
& lta href = " Javascript:window . external . add favorite(document . location . href,document . title)" & gt;加入收藏
其中document.title是自動獲取當前網頁標題的javascript代碼。
希望能幫到妳。