将 html 替换为 javascript

Replacing html from javascript

我很平静 html:

<a  control_type="dialog" request_url="/int_studies/json/callback_display_test_task_list" destination_block_id="course-test-dialog" no_check_plain="1" request_data_source="attr" request_data="iduniver_edu_prog=519&amp;course_id=375&amp;idtest=3954&amp;type=1" dialog_title="teeeeeeest" dialog_buttons="{&#039;Закрыть&#039; : function(){ $(this).dialog(&#039;close&#039;); }}" class="ajax-command-anchor" href="#">teeeeeeest &gt;&gt;</a>

使用 Mozilla Firefox 和 Greasemonkey-addon 我需要替换

request_url="/int_studies/json/callback_display_test_task_list"

request_url="#"

Greasemonkey 在链接页面上执行您的 javascript-代码,那么我应该如何从 js 访问 request_url 参数值?请帮忙

您可以在 dom 准备就绪后绑定事件。您应该在 document.ready 函数中编写代码段。您的代码段将是

$(function () {
  $("a[control_type=dialog]").prop("request_url", "#");
})