0

所以我试着搜索我要找的东西,但我真的找不到我要找的东西,如果有可能的话。

我正在寻找一种使人们在我的网站上单击的链接几乎显示为广告的方法,而不是浏览器中的单独窗口或选项卡,而是当前选项卡本身上的它自己的小窗口。我做了一个图像作为我的意思的一个例子。我不知道它是否有任何好处,但值得一试,我希望它也能够与 Coolmenu 一起使用。如果人们想在新窗口或新标签中打开它们,他们只需右键单击,如下所示:

截屏

更新:10:32 7.11 我意识到这两个链接,以及当我在我自己的所有日期表单上搜索一些时,比如 2006-2009,而他们都使用

<div id="overlay">
<div>
<p>Content you want the user to see goes here.</p>
</div>
</div>

我想我可以只写 () (如果我错了,请纠正我)以及段落的东西,但是我应该怎么做呢?我应该直接删除它还是更换它?

更新 10:50 7.11 我今天没有更多时间来处理它,但是下次我有时间时,我是否应该在我的页面上发布所有其他 javascript 和 css(只有coolmenu)给你一些想知道我到底想完成什么?再次感谢大家的大力帮助。

12.11 08:05 更新:我无法让它与 Coolmenu 一起工作。如果需要,我可以为coolmenu和window的东西提供我的css和javascript代码,我应该上传一个.txt还是把它放在这里?

4

2 回答 2

2

模态窗口

我猜你想制作Modal Windows。您可以在此处使用本教程轻松做到这一点:简单的 jQuery 模态窗口教程

截屏:

简单模式窗口

演示在这里:演示


jQuery 对话框

或者你甚至可以使用jQuery Dialogs,它使用相同的原理,但易于实现。

jQuery 对话框

于 2012-11-07T09:12:10.523 回答
0

Although you don't want to open a new window, this is the quickest way you will get it to work how you want and involves the least amount of javascript.

Code:

<a href="#" onclick="window.open ('http://google.com', 'mywindow','location=1,status=1,scrollbars=1, width=100,height=100');">Hi</a>

Parameter 1 is the URL, parameter 2 is the name of the window.

In the 3rd parameter you can pass the following options:

  • status: The status bar at the bottom of the window.
  • toolbar: The standard browser toolbar, with buttons such as Back and Forward.
  • location: The Location entry field where you enter the URL.
  • menubar: The menu bar of the window
  • directories: The standard browser directory buttons, such as What’s New and What’s Cool
  • resizable: Allow/Disallow the user to resize the window.
  • scrollbars: Enable the scrollbars if the document is bigger than the window
  • height: Specifies the height of the window in pixels. (example: height=’350′)
  • width: Specifies the width of the window in pixels.

For more info click here

于 2012-11-07T09:07:27.557 回答