2023-05-16 10:47:08 +08:00

13 lines
312 B
JavaScript

$(function()
{
$('#mainContent .main-header h2 #selectTask').change(function()
{
var taskID = $(this).val();
if(taskID)
{
location.href = createLink('testreport', 'create', 'objectID=' + taskID + '&objectType=testtask');
return false;
}
});
})