我正在尝试根据 W3C 使我的网站 100% 有效。
我的网站是:www.theprinterdepo.com
验证报告在这里: http://validator.w3.org/check?uri=http%3A%2F%2Fwww.theprinterdepo.com%2F&charset=%28detect+automatically%29&doctype=Inline&group=0&user-agent= W3C_Validator%2F1 .3
我需要根据该页面修复一个 javascript 代码,但我找不到它的位置 我已经在我的模板文件夹中尝试了 header.phtml 和 head.phtml 但它不存在
js是这样的:
<script type="text/javascript">window.HDUSeed='6780a8396c4a7207c8e81d509cbafa79';
window.HDUSeedIntId = setInterval(function(){
if (document.observe) {
document.observe('dom:loaded', function(){
for (var i = 0; i < document.forms.length; i++) {
if (document.forms[i].getAttribute('action') && document.forms[i].getAttribute('action').match('contacts/index/post')) {
var el = document.createElement('input');
el.type = ('hidden');
el.name = 'hdu_seed';
el.value = window.HDUSeed;
document.forms[i].appendChild(el);
}
}
});
clearInterval(window.HDUSeedIntId)
}
}, 100)</script>
问题是我可以在哪个 magento 文件中检查并修复它?