gpt4 book ai didi

javascript - 如何在javascript中剪切字符串的特定部分

转载 作者:行者123 更新时间:2023-12-03 10:08:51 25 4
gpt4 key购买 nike

我尝试使用以下方法通过点击事件获取图像 src 的值:

<img onclick='swap(this); return false;' style='width:auto;max-width:65px;max-height:55px' src="/member/sthumb/$image_path_array[$i]">

所以当我点击它时,我得到这个值/member/sthumb/$image_path_array[$i]

这是我的 JavaScript 代码:

<script type="text/javascript">
function swap(image) {
...some code to cut the sthumb/ part from the string
document.getElementById("main").src = image.src;
}
</script>

在此 javascript 代码中,我想删除此特定部分 sthumb/ ,以便 image.src 现在为:/member/$image_path_array[$i]

最佳答案

使用String.replace()

function swap(image) {
//...some code to cut the sthumb/ part from the string
document.getElementById("main").src = image.src.replace('/sthumb', '');
}

关于javascript - 如何在javascript中剪切字符串的特定部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30235588/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com