Skip to content

Instantly share code, notes, and snippets.

@yanli0303
Created July 31, 2024 17:31
Show Gist options
  • Save yanli0303/6146568d46a074aaf312888d88670ca7 to your computer and use it in GitHub Desktop.
Save yanli0303/6146568d46a074aaf312888d88670ca7 to your computer and use it in GitHub Desktop.
HTML popover property
<!DOCTYPE html>
<html>
<head>
<title>HTML popover property</title>
</head>
<body>
<button id="button" popovertarget="select">请选择</button>
<menu id="select" popover>
<div><input type="radio" name="type" value="">请选择</div>
<div><input type="radio" name="type" value="1">选项1</div>
<div><input type="radio" name="type" value="2">选项2</div>
<div><input type="radio" name="type" value="3" disabled>选项3</div>
<div><input type="radio" name="type" value="4">选项4</div>
</menu>
<button popovertarget="imgBook">点击显示图片</button>
<img id="imgBook" popover src="/study/202312/book1.jpg" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment