如何动态添加结束锚()标记?

时间:2013-06-03 18:26:50

标签: anchor document.write

我正在寻找一种比document.write更好的方法,将结束标记插入到我的代码中。这样做的原因是根据移动网站的屏幕分辨率关闭标签。这个想法是,在移动设备上,文本的摘录是可点击的,并将带您到完整的文章,但在桌面上它将无法点击。我使用document.write按需操作,但代码不会验证。我正在寻找一种方法来做到这一点,并有一个经过验证的代码。以下是我到目前为止所感谢您提供的任何帮助。

<script>
if (screen && screen.width > 1024) document.write('</a>');
</script>

<script>
if (screen && screen.width <= 1024)
document.write('</a>');
</script>

1 个答案:

答案 0 :(得分:0)

使用Jquery。

使用$('divID').append('<a>');