我在结束正文标记之前插入了这段代码:
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.header-search-form, .hoverbgpfthnailiface ').click(function(e){
var target = e.target;
while (target.nodeType != 1) target = target.parentNode;
if(target.tagName != 'TEXTAREA'){
jQuery('.header-search-form').css({ 'display' : 'none' });
jQuery('.imgcontainer').show();
}
});
});
</script>
问题是脚本不起作用,我检查了控制台,没有错误。奇怪的是,如果我把这段代码放在 Chrome 控制台中,它就可以完美运行。
怎么了 ?
如果有帮助,这里是网站。
有什么建议么?