我在将带有图像的 javascript 小书签添加到我的 github 自述文件时遇到了麻烦。该图像应该使用户可以轻松地将书签添加到他的书签栏。
基本上,这(http://alaingilbert.github.com/Turntable-API/bookmarklet.html)是我想要实现的,而是在 github 自述文件上。
到目前为止,我有这个:
<table style="border: none;">
<tbody>
<tr style="border:none;">
<td style="vertical-align: middle; padding-top: 10px; border: none;">
<a href="javascript:(function(){ window.open(‘http://www.test.com/’); })();">
<img src="http://i.imgur.com/vCSDi.png">
</a>
</td>
<td style="vertical-align: middle; text-align: left; border: none;">
← Drag this to your bookmark bar.
</td>
</tr>
</tbody>
</table>
但是当我在 github 上查看我的自述文件的源代码时,我注意到 href 属性似乎已经消失了,所以小书签将不再起作用。
github会自动删除javascript href吗?有没有办法解决这个问题?
编辑:table、tbody、tr 和 td 标签的属性似乎也消失了。好像github不喜欢他们?