如何在 jQuery 中删除字符串中的第一个字符
答案:使用 JavaScript substring()
方法
您可以使用 JavaScript substring()
方法从字符串中删除第一个字符。 一个典型的例子是从片段标识符中删除哈希 (#
) 字符。
让我们看一个例子来了解这个方法的基本工作原理:
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery 从字符串中删除第一个字符</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$("a").click(function(){
var fid = $(this).attr("href");
var itemId = fid.substring(1, fid.length);
alert("The ID of the linked image is - " + itemId);
});
});
</script>
</head>
<body>
<a href="#balloons">Show Balloons</a>
<br>
<img src="balloons.jpg" style="margin-top: 1000px" alt="Hot Air Balloons" id="balloons">
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: