Questions tagged «hyperlink»

超链接是对文档(或部分)的引用,可以使用导航系统进行导航,以允许在原始文档中选择强调的内容。


7
使用Java按钮在浏览器中打开链接?[重复]
这个问题已经在这里有了答案: 如何使用Java打开默认的Web浏览器 (9个答案) 上个月关闭。 如何在默认浏览器中通过单击按钮打开链接,如下所示: button.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { open("www.google.com"); // just what is the 'open' method? } }); ?


9
添加onclick函数以在JavaScript中转到url?
当用户将鼠标悬停在该字段上时,我使用了一些精美的JavaScript来突出显示该字段。您能否告诉我是否有添加onclick功能的方法,该功能将充当链接并转到URL? <script> $(function() { $('tr').hover(function() { $(this).css('background-color', '#eee'); $(this).contents('td').css({'border': '0px solid red', 'border-left': 'none', 'border-right': 'none'}); $(this).contents('td:first').css('border-left', '0px solid red'); $(this).contents('td:last').css('border-right', '0px solid red'); }, function() { $(this).css('background-color', '#FFFFFF'); $(this).contents('td').css('border', 'none'); $('a#read_message.php').click(function(){ URL(); }); }); }); </script>

3
Github Markdown同页链接
假设我在同一个git hub Wiki页面中有两个点,为此我们将其称为place 1和place 2。 ##Title ###Place 1 Hello, this is some text to fill in this, [here](place2), is a link to the second place. ###Place 2 Place one has the fun times of linking here, but I can also link back [here](place1). 替代方法是ToC。 ##Title [ToC] ###Place 1 ###Place 2 …

6
如何仅从a:before下划线删除?
我有一组使用的样式链接:before以应用箭头。 在所有浏览器中看起来都不错,但是当我在链接上应用下划线时,我不想在:before零件上使用下划线(箭头)。 例如,请参见jsfiddle:http : //jsfiddle.net/r42e5/1/ 是否可以删除它?我所坐的测试样式#test p a:hover:before确实得到了应用(根据Firebug),但是下划线仍然存在。 有什么办法可以避免这种情况? #test { color: #B2B2B2; } #test p a { color: #B2B2B2; text-decoration: none; } #test p a:hover { text-decoration: underline; } #test p a:before { color: #B2B2B2; content: "► "; text-decoration: none; } #test p a:hover:before { text-decoration: none; } <div …


5
在Bitbucket Git存储库上链接最新文件
我在Bitbucket上有一个公共的Git存储库。我想链接自述文件的最新版本。这是修订/提交的链接: https://bitbucket.org/wordless/thofu-interpreter/raw/5bfc37864c5d/ThoFu%20Interpreter/ReadMe.txt 我试图用tip和default代替修订版本号,但是没有用。有什么办法可以永久链接到我的最新文件?

11
从TextView中的链接中删除下划线-Android
我正在使用两个textview来显示数据库中的链接,我设法更改了链接颜色,但是我想删除下划线 email.setText(c.getString(5)); website.setText(c.getString(6)); Linkify.addLinks(email, Linkify.ALL); Linkify.addLinks(website, Linkify.ALL); 我可以从XML或代码中做到这一点吗?

6
链接到网页的特定部分
如何在我无法控制的另一个网站上创建指向较长网页的一部分的链接? 我以为您可以在链接的末尾使用#partofpage的变体。有什么建议么?
93 hyperlink 

7
如何使用引导程序将链接放在按钮上?
一个人如何将链接放在带有自举程序的按钮上? 引导程序文档中有4种方法: <a href="#" class="btn btn-info" role="button">Link Button</a> <button type="button" class="btn btn-info">Button</button> <input type="button" class="btn btn-info" value="Input Button"> <input type="submit" class="btn btn-info" value="Submit Button"> 第一个不适用于我,没有按钮显示,只有带有链接的文本,让我感觉到主题正在使用。 第二个显示的是我想要的按钮,但是单击什么代码会使按钮链接到另一页? 干杯

4
Git和硬链接
考虑到Git无法识别指向存储库外部的符号链接,使用硬链接是否有任何问题? Git可以打破它们吗?您能给我指出详细的信息吗?

9
如何使HTML在另一个窗口或选项卡中打开超链接?
这是HTML中超链接的一行: <a href="http://www.starfall.com/">Starfall</a> 因此,如果我单击“ Starfall”,我的浏览器-我正在使用FireFox-将带我到新页面,并且窗口的内容将更改。我想知道如何用HTML做到这一点,以便在新窗口中打开新页面,而不是更改前一个窗口?HTML中有这种方法吗? 如果是,是否可以在浏览器的另一个选项卡(而不是另一个窗口)中打开请求的页面?
91 html  window  hyperlink 

8
如何使用markdown语法链接到任何本地文件?
我有一个包含几个链接的本地markdown文件,并且我希望该链接指向pdf等本地文件。 我使用以下语法: [my link](file:///C:/my_file.pdf) 但是,当我在Firefox页面中打开markdown文件并单击链接时,没有任何反应。 我到底错过了什么?是否可以打开本地文件?


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.