Files
python_tools/web/hello.html

26 lines
715 B
HTML
Raw Normal View History

2024-01-14 22:38:04 +08:00
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello</title>
</head>
<body>
<h1>Hello world</h1>
<button id="but_id" onClick="buttonClick()">Click me</button>
<input id="select_dir_id" disabled="disabled" style="width: 400px" placeholder="显示选择的目录">
<script>
window.addEventListener('pywebviewready', function() {
console.log('pywebview is ready');
})
function buttonClick(){
console.log('dddddd');
pywebview.api.button_click().then((response)=>{
document.getElementById('select_dir_id').value=response
})
}
</script>
</body>
</html>