strong
在 onclick 事件期间删除元素的最佳方法是什么?
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>
</head>
<body>
<span onclick="testfx();"><strong>Test without styles</strong></span>
</body>
</html>
<script type="text/javascript">
function testfx() { alert('test'); }
</script>