创建一个 <a></a>
元素,链接到另一个网页。
第一个参数,href
,是一个字符串,设置链接页面的 URL。
第二个参数,html
,是一个字符串,设置链接的内部 HTML。常见的做法是使用文本、图片或按钮作为链接。
第三个参数,target
,是可选的。它是一个字符串,告诉网页浏览器在哪里打开链接。默认情况下,链接在当前浏览器标签页中打开。传递'_blank'
将使链接在新的浏览器标签页中打开。MDN 描述了一些其他选项。
示例
语法
createA(href, html, [target])
参数
href
字符串:
链接页面的 URL。
html
字符串:
链接元素显示的内部 HTML。
target
字符串:
新链接应该在哪个目标中打开,可以是 '_blank'
、'_self'
、'_parent'
或 '_top'
。
Returns
p5.Element: 新的 p5.Element 对象。
Notice any errors or typos? Please let us know. Please feel free to edit src/dom/dom.js and open a pull request!