我希望有人可以提供帮助,因为 .asp 对我来说是新手,这让我很头疼!
基本上我们有一个电子商务 Volusion 模板,在标题中,我们想在已经存在的旁边添加一个新图形,应该很容易,但一些 .asp 代码似乎隐藏了标题中的元素。我尝试在代码中解释:
ASP
$("#content_area").find("table:contains('Home >')").css("display", "none").html("");
var a = $(".productnamecolorLARGE").html();
if (document.location.href.indexOf("help") == -1) {
if ($(".productnamecolorLARGE").html() != 'Order Status') {
if ($.browser.msie) {
$(".productnamecolorLARGE").html("<tr><td></td><td width='490'><div style='font-size: 21px; margin-bottom: -2px; padding-top: 19px;'>" + a + "</div></td></tr>");
} else {
$(".productnamecolorLARGE").html("<tr><td></td><td width='490'><div style='font-size: 21px; margin-bottom: -25px; padding-top: 19px;'>" + a + "</div></td></tr>");
}
};
} else {
$("#content_area").find("img").eq(0).remove();
}
$("#lnk1").css("color","#79496a");
$("#Header_ProductDetail_ProductDetails_span").parent().parent().parent().parent().parent().remove();
$("#headerTop").find("a").eq(0).html("<ing border=0 src='/v/vspfiles/templates/192/images/view_bag_small.png'>");
$(".video_container").css("padding", "17px 10px 16px 45px");
HTML
<div id="header" style="z-index: 999;">
<div id="display_homepage_title"><a href="http://www.domain.com/default.asp" title="www.domain.com">www.domain.com</a></div>
<div id="headerTop">
<a href="http://www.domain.com/shoppingcart.asp">View Bag</a>
<a href="http://www.domain.com/aboutus.asp">About</a>
<a href="http://www.domain.com/myaccount.asp">My Account</a>
这就是我想要做的:
<div id="headerTop">
<!-- This line is being added --> <a href="http://www.domain.com/returns.asp"><ing src="newgrahpic.jpg" width="100" height-"50"></a>
<a href="http://www.domain.com/shoppingcart.asp">View Bag</a>
<a href="http://www.domain.com/aboutus.asp">About</a>
<a href="http://www.domain.com/myaccount.asp">My Account</a>
进行此更改时,.asp 似乎将现有的查看包图形(第 2 行)添加到我的新视图(第 1 行),然后在其右侧显示“我的帐户”,而我的帐户被 Display:none 隐藏; 在我添加新行之前分配给它。
我很欣赏这听起来像是一堆废话,但我希望有人能理解它在做什么?!
提前感谢您的帮助。
富有的