我目前有以下 javascript 代码工作:
<script type="text/javascript">
urlPath=window.location.pathname;
urlPathArray = urlPath.split('/');
urlPath1=urlPathArray[2];
document.write('<a href="http://www.example.com/contact.php?id='+urlPath1+'">test</a>');
</script>
假设当前 URL 是http://www.example.com/products/0033.htm
javascript产生一个超链接到http://www.example.com/contact.php?id=0033.htm
如何修改此脚本以使urlPath1和最终的超链接没有“.htm”部分?