作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用以下方法通过点击事件获取图像 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]
最佳答案
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/
我是一名优秀的程序员,十分优秀!