使用 CEFPython,我们可以创建 javascript 函数的原型并在 python 中构建函数吗?
<button onclick="somme(b,a)">SOMME</button>
<label id='prompt'>Bonjour</label>
def somme(self,b,a):
self.ExecuteJavascript(document.getElementById('id').innerHTML = "somme ="+b+a)
使用 CEFPython,我们可以创建 javascript 函数的原型并在 python 中构建函数吗?
<button onclick="somme(b,a)">SOMME</button>
<label id='prompt'>Bonjour</label>
def somme(self,b,a):
self.ExecuteJavascript(document.getElementById('id').innerHTML = "somme ="+b+a)
是的,您可以使用 Javascript 绑定来执行此操作,请在此处查看片段:https ://github.com/cztomczak/cefpython/blob/master/examples/snippets/javascript_bindings.py
在教程文档中阅读有关 javascript 绑定的更多信息。