何を実現したいのかを書きましょう
題名とおなじになってしまいますが、
スペースに指定したIDにjavascriptでURLを書き込み詳細画面でクリックしてひらきたいです。
発生した問題やエラーメッセージを具体的に書きましょう
スペースに書き込みは行いましたが、クリックできるリンクにならずにおります。
実行したコードをコピー&ペーストしましょう
kintone.events.on('app.record.detail.show', function(event) {
var record = event.record;
var number = record['番号'].value;
const space = kintone.app.record.getSpaceElement('space');
const message = document.createElement('div');
message.textContent = 'https://example.com/link/' + number;
space.appendChild(message);
return event;
});