我试图在onclick事件之后调用PHP函数,该函数需要一个DOM元素的值作为参数(这就是我必须使用jquery的原因)
我想要一些看起来像这样的东西:
<button type="button" onclick="document.write('<?php hello("parameter") ?>');">Submit</button>
以下是我迄今为止所做的事情,但它无效:
<button type="button" onclick="document.write('<?php hello("<script>$(#idproduct).text()</script>") ?>');">Submit</button>
任何帮助都将不胜感激,谢谢。