0

在创建列表时,我希望超链接列应该有默认值

4

1 回答 1

1

测试演示:

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script>
$(function(){
$("input[aria-describedby='link']:first").val("http://www.google.com");//link is my column name,yo need to change to yours
})
</script>

链接是我的超链接列名,您需要将其更改为您的。

于 2020-07-21T02:53:55.467 回答