我不知道在moodle中将php的id值传递给jquery。有两个文件 index.php 和 myscript.js
index.php 文件:
html_writer::tag('button','', array('id' => 'buttonCompile', 'data-url' => $urlbase));
myscript.js 文件:
$(document).ready(function(){
alert($('#button').attr('id'));
});
我需要在 js 文件中显示“data-url”的值
pd: html_writer 是一个用于编写html代码的moodle函数,在本例中是一个按钮标签。