问题标签 [href]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - 我应该为 JavaScript 链接使用哪个“href”值,“#”还是“javascript:void(0)”?
以下是构建链接的两种方法,其唯一目的是运行 JavaScript 代码。就功能、页面加载速度、验证目的等而言,哪个更好?
或者
css - ASP.net MVC 中的 MembershipProviders 会影响样式表链接吗?
我在我的 ASP.net MVC 网站中更改了 MembershipProvider,现在登录页面的样式表没有被正确引用。如果这可能是原因,下面是我的 web.config 中表单标签的副本。除了名称和超时属性之外,它看起来与新项目生成的相同。
当我现在访问该页面时,CSS 的链接标记如下所示:
什么时候应该是这样的:
javascript - 将 JavaScript 代码放入.
javascript - 使用 Javascript 的幻灯片放映
我有一个使用 javascript 的幻灯片放映,其中图像显示来自另一台服务器(远程服务器)。我必须显示来自另一台服务器的图像,问题是当我设置“Img”html标签的“src”属性时,它将我的服务器本地主机路径附加为“http:\mysitehost.com\myremoresite.com\image1.jpg”我的图像路径是“http:\myremotesite.com\image1.jpg”。谁能告诉我如何从图像路径中删除我的网站网址“mysitehost.com”。下面是我的javascript。
regex - 正则表达式仅返回“链接”标签的“href”属性?
我试图制作一个只返回<link>
标签hrefs的正则表达式
为什么这个正则表达式会返回包括 <a hrefs 在内的所有 hrefs?
谢谢你
c# - C# WebBrowser HTML with references to scripts and images
I'm writing a C# app using the WebBrowser control, and I want all content I display to come from embedded resources - not static local files, and not remote files.
Setting the initial text of the control to an embedded HTML file works great with this code inspired by this post:
As good as that is, files referred to in the HTML - javascript, images like <img src="whatever.png"/>
etc, don't work. I found similar questions here and here, but neither is asking exactly what I mean, namely referring to embedded resources in the exe, not files.
I tried res://...
and using a <base href='..."
but neither seemed to work (though I may have not got it right).
Perhaps (following my own suggestion on this question), using a little embedded C# webserver is the only way... but I would have thought there is some trick to get this going?
Thanks!
javascript - 使用 javascript 编辑所有外部链接
如何使用 javascript 浏览 div 中的所有外部链接,添加(或附加)一个类和替代文本?
我想我需要获取 div 元素内的所有对象,然后检查每个对象是否为 a ,并检查 href 属性是否以 http(s):// 开头(应该是外部链接),然后将内容添加到alt 和 class 属性(如果它们不存在,则创建它们,如果它们存在;附加想要的值)。
但是,我如何在代码中做到这一点?
php - php上的超链接
我正在开发一个 wordpress 模板,需要在页面顶部添加一个指向卡通气泡的超链接。据我所知,泡沫是 php。我在哪里插入href?
href 应指向 www.ojaivalleynews.com
如果您想在气泡上看到视觉效果,博客网址是 www.ovnblog.com。我用萤火虫来观察,但可惜我对 php 的了解还不够,无法理解它。
谢谢
更新...
我错过了关于上述问题的第二行代码,并且根据这里的建议,对这一行进行了更正并且它有效。
感谢大家的帮助。为大家点赞!
python - html文本中链接的正则表达式
我希望这个问题不是 RTFM 问题。我正在尝试编写一个从标准 HTML 网页(<link href...
标签)中提取链接的 Python 脚本。我在网上搜索了匹配的正则表达式,发现了许多不同的模式。是否有任何商定的标准正则表达式来匹配链接?
亚当
更新: 我实际上正在寻找两个不同的答案:
- 什么是解析 HTML 链接的库解决方案。Beautiful Soup似乎是一个很好的解决方案(谢谢
Igal Serban
!cletus
) - 可以使用正则表达式定义链接吗?