Created
July 31, 2024 17:31
-
-
Save yanli0303/6146568d46a074aaf312888d88670ca7 to your computer and use it in GitHub Desktop.
HTML popover property
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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