我是struts標籤庫的新手。我想要生成一個錨點來在同一個文檔中定義一個超鏈接目標。我的代碼是這樣的:<html:link>標籤
<html:link anchor="abc" >
This is to test anchors
</html:link>
...Some other tags here
<html:link linkName = "abc" >
Anchor
</html:link>
我得到的錯誤是Cannot create rewrite URL: java.net.MalformedURLException: You must specify exactly one of "forward", "href", or "page"
任何人能告訴我怎麼解決這個問題?
感謝
但超鏈接的目標是在同一doccument。所以我們仍然需要指定href?在HTML等效 href =「#abc」我們不指定url如果它在同一個document.how在struts中執行它? – daniel
您需要設置href,因爲它是先決條件。 (或至少一個上面指定的屬性)。所以如果它在同一頁面上,我想你會設置href =「#」和anchor =「abc」。 – Kamal