javascript如何判断输入的url是否正确

时间:2024-06-10 00:57:55 

网页得来,原网页广告太多,影响心情


<html>
<head>
<title>检查是否为URL</title>
<script language="javascript">
function check(){
str = form1.txt.value;
str = str.match(/http:\/\/.+/);
if (str == null){
alert('你输入的URL无效');
return false;
}else{
alert("你输入的URL有效");
return true;
}
}
</script>

</head>
<body>
<form name="form1" onSubmit="return check()">
<input type="text" name="txt">
<input type="submit" value="检验">
</form>
</body>
</html>
标签:判断url
0
投稿

猜你喜欢

  • pandas值替换方法

    2021-05-31 20:22:38
  • 删除数据库中重复数据的几个方法

    2024-01-17 12:56:36
  • 轻松实现TensorFlow微信跳一跳的AI

    2021-11-24 10:35:40
  • 如何用golang运行第一个项目

    2024-05-22 10:21:35
  • mysql 8.0 错误The server requested authentication method unknown to the client解决方法

    2024-01-13 01:41:25
  • Python中的axis参数的具体使用

    2021-06-14 19:42:53
  • 适合所有表的添加、删除、修改的函数

    2008-04-15 15:29:00
  • python selenium登录豆瓣网过程解析

    2021-12-15 09:52:49
  • 一些需要禁用的PHP危险函数(disable_functions)

    2023-11-23 15:29:25
  • Python实现曲线拟合操作示例【基于numpy,scipy,matplotlib库】

    2023-07-19 23:31:35
  • python统计多维数组的行数和列数实例

    2021-02-07 00:32:17
  • 网站登录持久化Cookie方案

    2023-07-01 01:44:17
  • mysql 一次向表中插入多条数据实例讲解

    2024-01-14 06:34:48
  • python获取array中指定元素的示例

    2021-09-11 15:37:43
  • 重新阅读《HTTP协议基础》

    2008-04-04 17:40:00
  • Python中实现最小二乘法思路及实现代码

    2021-06-17 02:23:24
  • MySQL Index Condition Pushdown(ICP)性能优化方法实例

    2024-01-19 20:08:25
  • 15个开发者必须知道的chrome技巧

    2022-08-27 20:24:33
  • 页面包含的处理

    2024-05-09 09:04:18
  • Python 遍历子文件和所有子文件夹的代码实例

    2021-02-09 17:21:34
  • asp之家 网络编程 m.aspxhome.com